source: network-game/common/compiler.h@ d87708d

Last change on this file since d87708d was d87708d, checked in by dportnoy <dmp1488@…>, 12 years ago

Added a compiler header to determine whether a windows or linux compiler is being used

  • Property mode set to 100644
File size: 153 bytes
Line 
1#ifdef _WIN64
2 #define WINDOWS
3#elif _WIN32
4 #define WINDOWS
5#elif __linux
6 #define LINUX
7#elif __unix
8 #define LINUX
9#elif __posix
10 #define LINUX
11#endif
Note: See TracBrowser for help on using the repository browser.