mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
Make win32/i_system.h compatible with GCC again.
SVN r417 (trunk)
This commit is contained in:
parent
83373fba88
commit
af2ef6f5f0
1 changed files with 3 additions and 1 deletions
|
@ -212,8 +212,10 @@ void I_SetWndProc();
|
|||
// Get/SetWindowLong, meaning they take LONGs and not LONG_PTRs.
|
||||
#ifdef _WIN64
|
||||
typedef long long WLONG_PTR;
|
||||
#else
|
||||
#elif _MSC_VER
|
||||
typedef _W64 long WLONG_PTR;
|
||||
#else
|
||||
typedef long WLONG_PTR;
|
||||
#endif
|
||||
|
||||
// Directory searching routines
|
||||
|
|
Loading…
Reference in a new issue