diff options
author | Jonathan White <jwhite@tungstengraphics.com> | 2008-08-05 19:20:43 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-08-05 19:20:43 -0600 |
commit | 240962faf729dbd572d0a4668c66d155b931a11d (patch) | |
tree | a25bce23f0dd51c64a27b4317d8527e53047f32c /include/EGL | |
parent | 096b5fa52483eaf75fc56bee501aa757dccd8867 (diff) |
egl: added snprintf, strcasecmp defines
Diffstat (limited to 'include/EGL')
-rw-r--r-- | include/EGL/eglplatform.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h index 74e0240068..d74565c20f 100644 --- a/include/EGL/eglplatform.h +++ b/include/EGL/eglplatform.h @@ -55,9 +55,12 @@ #ifndef EGLAPI #define EGLAPI __declspec(dllexport) #endif + typedef long int32_t; typedef unsigned long u_int32_t; typedef unsigned char uint8_t; +#define snprintf _snprintf +#define strcasecmp _stricmp typedef HDC NativeDisplayType; typedef HWND NativeWindowType; |