2000-05-12 22:18:14 +02:00
|
|
|
/* Typedefs for extensions loading
|
|
|
|
|
|
|
|
Copyright (c) 2000 Lionel Ulmer
|
|
|
|
*/
|
|
|
|
#ifndef __DLLS_OPENGL32_OPENGL_EXT_H
|
|
|
|
#define __DLLS_OPENGL32_OPENGL_EXT_H
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *name; /* name of the extension */
|
2002-01-02 22:43:19 +01:00
|
|
|
char *glx_name; /* name used on Unix's libGL */
|
2000-05-12 22:18:14 +02:00
|
|
|
void *func; /* pointer to the Wine function for this extension */
|
|
|
|
void **func_ptr; /* where to store the value of glXGetProcAddressARB */
|
|
|
|
} OpenGL_extension;
|
|
|
|
|
|
|
|
extern OpenGL_extension extension_registry[];
|
|
|
|
extern int extension_registry_size;
|
|
|
|
|
|
|
|
#endif /* __DLLS_OPENGL32_OPENGL_EXT_H */
|