From: Jonathan White Date: Wed, 6 Aug 2008 01:20:43 +0000 (-0600) Subject: egl: added snprintf, strcasecmp defines X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=240962faf729dbd572d0a4668c66d155b931a11d;p=mesa.git egl: added snprintf, strcasecmp defines --- diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h index 74e0240068f..d74565c20f5 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;