diff options
Diffstat (limited to 'make/stub_includes/egl')
-rw-r--r-- | make/stub_includes/egl/KD/kdplatform.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/make/stub_includes/egl/KD/kdplatform.h b/make/stub_includes/egl/KD/kdplatform.h index cabcd3ce5..0357b1e2e 100644 --- a/make/stub_includes/egl/KD/kdplatform.h +++ b/make/stub_includes/egl/KD/kdplatform.h @@ -7,8 +7,13 @@ typedef int KDint32; typedef unsigned int KDuint32; +#if defined(_MSC_VER) +typedef signed __int64 KDint64; +typedef unsigned __int64 KDuint64; +#else typedef long long KDint64; typedef unsigned long long KDuint64; +#endif typedef short KDint16; typedef unsigned short KDuint16; typedef unsigned long KDuintptr; |