kernel32: Silence a fixme in GetNativeSystemInfo.
[wine/multimedia.git] / dlls / opengl32 / opengl_ext.h
blob93afd0520d946aaa8aa689b378e7a3aca9e588e3
1 /* Typedefs for extensions loading
3 Copyright (c) 2000 Lionel Ulmer
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __DLLS_OPENGL32_OPENGL_EXT_H
20 #define __DLLS_OPENGL32_OPENGL_EXT_H
22 #undef APIENTRY
23 #undef CALLBACK
24 #undef WINAPI
26 #define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
27 #define GL_GLEXT_PROTOTYPES
28 #include <GL/gl.h>
29 #include <GL/glx.h>
30 #ifdef HAVE_GL_GLEXT_H
31 # include <GL/glext.h>
32 #endif
33 #undef XMD_H
35 #undef APIENTRY
36 #undef CALLBACK
37 #undef WINAPI
39 /* Redefines the constants */
40 #define CALLBACK __stdcall
41 #define WINAPI __stdcall
42 #define APIENTRY WINAPI
44 /* X11 locking */
46 extern void (*wine_tsx11_lock_ptr)(void);
47 extern void (*wine_tsx11_unlock_ptr)(void);
49 /* As GLX relies on X, this is needed */
50 void enter_gl(void);
51 #define ENTER_GL() enter_gl()
52 #define LEAVE_GL() wine_tsx11_unlock_ptr()
55 typedef struct {
56 const char *name; /* name of the extension */
57 const char *extension; /* name of the GL/WGL extension */
58 void *func; /* pointer to the Wine function for this extension */
59 } OpenGL_extension;
61 extern void *extension_funcs[];
62 extern const OpenGL_extension extension_registry[];
63 extern const int extension_registry_size;
65 #endif /* __DLLS_OPENGL32_OPENGL_EXT_H */