1 /* Typedefs for extensions loading
3 Copyright (c) 2000 Lionel Ulmer
5 #ifndef __DLLS_OPENGL32_OPENGL_EXT_H
6 #define __DLLS_OPENGL32_OPENGL_EXT_H
9 char *name
; /* name of the extension */
10 void *func
; /* pointer to the Wine function for this extension */
11 void **func_ptr
; /* where to store the value of glXGetProcAddressARB */
14 extern OpenGL_extension extension_registry
[];
15 extern int extension_registry_size
;
17 #endif /* __DLLS_OPENGL32_OPENGL_EXT_H */