Add AppDefaults app selection to control panel
[wine/gsoc-2012-control.git] / dlls / opengl32 / opengl_ext.h
blobd84ec0d6a2f75a3bfe30ff2100f6512ed837e865
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 #include <GL/gl.h>
28 #undef XMD_H
30 #undef APIENTRY
31 #undef CALLBACK
32 #undef WINAPI
34 /* Redefines the constants */
35 #define CALLBACK __stdcall
36 #define WINAPI __stdcall
37 #define APIENTRY WINAPI
39 #include "windef.h"
41 typedef struct {
42 const char *name; /* name of the extension */
43 const char *extension; /* name of the GL/WGL extension */
44 void *func; /* pointer to the Wine function for this extension */
45 } OpenGL_extension;
47 extern const OpenGL_extension extension_registry[];
48 extern const int extension_registry_size;
50 extern BOOL WINAPI wglSetPixelFormatWINE( HDC hdc, int format );
52 #endif /* __DLLS_OPENGL32_OPENGL_EXT_H */