opengl_ext.h 1.58 KB
Newer Older
Lionel Ulmer's avatar
Lionel Ulmer committed
1 2 3
/* Typedefs for extensions loading

     Copyright (c) 2000 Lionel Ulmer
4 5 6 7 8 9 10 11 12 13 14 15 16
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* 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
Lionel Ulmer's avatar
Lionel Ulmer committed
18 19 20 21
*/
#ifndef __DLLS_OPENGL32_OPENGL_EXT_H
#define __DLLS_OPENGL32_OPENGL_EXT_H

22 23 24 25 26 27
#define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
#include <GL/gl.h>
#undef  XMD_H

#undef APIENTRY
#undef CALLBACK
28
#undef GLAPI
29
#undef WINAPI
30
#undef WINGDIAPI
31 32 33 34 35 36

/* Redefines the constants */
#define CALLBACK    __stdcall
#define WINAPI      __stdcall
#define APIENTRY    WINAPI

37
#include "windef.h"
38

Lionel Ulmer's avatar
Lionel Ulmer committed
39
typedef struct {
40
  const char  *name;     /* name of the extension */
41
  const char  *extension; /* name of the GL/WGL extension */
Lionel Ulmer's avatar
Lionel Ulmer committed
42 43 44
  void  *func;     /* pointer to the Wine function for this extension */
} OpenGL_extension;

45 46
extern const OpenGL_extension extension_registry[];
extern const int extension_registry_size;
Lionel Ulmer's avatar
Lionel Ulmer committed
47

48 49
extern BOOL WINAPI wglSetPixelFormatWINE( HDC hdc, int format );

Lionel Ulmer's avatar
Lionel Ulmer committed
50
#endif /* __DLLS_OPENGL32_OPENGL_EXT_H */