diff options
author | Jonathan White <jwhite@tungstengraphics.com> | 2008-08-05 08:12:38 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-08-05 08:12:38 -0600 |
commit | b51584184a8062bf0f0f442ef6029a220ce3f153 (patch) | |
tree | 6ebfbcf05098a3ac6ecff1bb622fa33c61c2e173 /include/EGL | |
parent | 2d8551b30f38d111b60511700c690db1e5b2ab16 (diff) |
egl: typedef uint8_t for Windows
Diffstat (limited to 'include/EGL')
-rw-r--r-- | include/EGL/eglplatform.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h index 6d6fa27a3d..74e0240068 100644 --- a/include/EGL/eglplatform.h +++ b/include/EGL/eglplatform.h @@ -57,6 +57,8 @@ #endif typedef long int32_t; typedef unsigned long u_int32_t; +typedef unsigned char uint8_t; + typedef HDC NativeDisplayType; typedef HWND NativeWindowType; typedef HBITMAP NativePixmapType; |