I put this in a header file definition.h, then I have several classes in my project that include definition.h. when I use two or more of these classes in my main I get the error
error C2371: 'PACK' : redefinition; different basic types,
I understand the reason of the error, but my question is, where can I put this structure or declare it in order for it to be like a global new type, that is to be able to used in anywhere in my project. That may be a silly question but I am a newbie.