diff options
author | Sven Gothel <[email protected]> | 2010-11-04 19:36:51 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-04 19:36:51 +0100 |
commit | 94df5aa8a3e232d949cbbf49a934df0d22f686dd (patch) | |
tree | a5242418954e76d3db3e97c016b3ed64ef3096fc /make/stub_includes/egl | |
parent | 00bca06d233820ef64272c2e4af135660f65cc9e (diff) |
Adding Win MSC patch
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; |