ntdll._iswctype should be ntdll.iswctype.
[wine] / dlls / opengl32 / opengl_ext.h
1 /* Typedefs for extensions loading
2
3      Copyright (c) 2000 Lionel Ulmer
4 */
5 #ifndef __DLLS_OPENGL32_OPENGL_EXT_H
6 #define __DLLS_OPENGL32_OPENGL_EXT_H
7
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;
13
14 extern OpenGL_extension extension_registry[];
15 extern int extension_registry_size;
16
17 #endif /* __DLLS_OPENGL32_OPENGL_EXT_H */