diff options
Diffstat (limited to 'make/stub_includes/gluegen_egl/EGL/eglplatform.h')
-rwxr-xr-x | make/stub_includes/gluegen_egl/EGL/eglplatform.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/make/stub_includes/gluegen_egl/EGL/eglplatform.h b/make/stub_includes/gluegen_egl/EGL/eglplatform.h index 4a32edeef..28dba6bee 100755 --- a/make/stub_includes/gluegen_egl/EGL/eglplatform.h +++ b/make/stub_includes/gluegen_egl/EGL/eglplatform.h @@ -46,9 +46,12 @@ extern "C" { #define EGLAPI // Define native window system types -typedef int EGLNativeDisplayType; -typedef void* EGLNativeWindowType; -typedef void* EGLNativePixmapType; +typedef struct {} _EGLNativeDisplayType; +typedef struct {} _EGLNativeWindowType; +typedef struct {} _EGLNativePixmapType; +typedef _EGLNativeDisplayType* EGLNativeDisplayType; +typedef _EGLNativeWindowType* EGLNativeWindowType; +typedef _EGLNativePixmapType* EGLNativePixmapType; #ifdef __cplusplus } |