- moved the 'constructor' into a real DLL init function
[wine/hacks.git] / dlls / opengl32 / opengl_ext.h
blobb09ce249de7240e90175c0f4d870132594a50f97
1 /* Typedefs for extensions loading
3 Copyright (c) 2000 Lionel Ulmer
4 */
5 #ifndef __DLLS_OPENGL32_OPENGL_EXT_H
6 #define __DLLS_OPENGL32_OPENGL_EXT_H
8 typedef struct {
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 */
12 } OpenGL_extension;
14 extern OpenGL_extension extension_registry[];
15 extern int extension_registry_size;
17 #endif /* __DLLS_OPENGL32_OPENGL_EXT_H */