Advertisement
doomgod

(G)ZDoom basictypes.h error somehow worked around in vcproj

Feb 12th, 2016
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // windef.h, included by windows.h, has its own incompatible definition
  2. // of DWORD as a long. In files that mix Doom and Windows code, you
  3. // must define USE_WINDOWS_DWORD before including doomtype.h so that
  4. // you are aware that those files have a different DWORD than the rest
  5. // of the source.
  6.  
  7. #ifndef USE_WINDOWS_DWORD
  8. typedef uint32 DWORD;
  9. #endif
  10. typedef uint32 BITFIELD;
  11. typedef int INTBOOL;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement