Make win32/i_system.h compatible with GCC again.

SVN r417 (trunk)
This commit is contained in:
Randy Heit 2006-12-19 04:49:13 +00:00
parent 83373fba88
commit af2ef6f5f0

View file

@ -212,8 +212,10 @@ void I_SetWndProc();
// Get/SetWindowLong, meaning they take LONGs and not LONG_PTRs. // Get/SetWindowLong, meaning they take LONGs and not LONG_PTRs.
#ifdef _WIN64 #ifdef _WIN64
typedef long long WLONG_PTR; typedef long long WLONG_PTR;
#else #elif _MSC_VER
typedef _W64 long WLONG_PTR; typedef _W64 long WLONG_PTR;
#else
typedef long WLONG_PTR;
#endif #endif
// Directory searching routines // Directory searching routines