Advertisement

mmsystem.h

Started by April 14, 2001 09:58 AM
0 comments, last by wingman20 23 years, 10 months ago
when i conpile my game, i get this warning (only on warning lever 4): c:\program files\microsoft visual studio\vc98\include\mmsystem.h(1623) : warning C4201: nonstandard extension used : nameless struct/union here''s the code that causes it: union { struct { LONG lMinimum; /* signed minimum for this control */ LONG lMaximum; /* signed maximum for this control */ }; struct { DWORD dwMinimum; /* unsigned minimum for this control */ DWORD dwMaximum; /* unsigned maximum for this control */ }; DWORD dwReserved[6]; } Bounds; what''s with that?
Don''t worry about that warning. It has nothing to do with how your code runs. It is simply there to keep you from writing non-portable code (which may not compile correctly on other compilers), but that Windows'' code - let MS deal with it.

This topic is closed to new replies.

Advertisement