2000-05-12 22:18:14 +02:00
|
|
|
/* Typedefs for extensions loading
|
|
|
|
|
|
|
|
Copyright (c) 2000 Lionel Ulmer
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-05-12 22:18:14 +02:00
|
|
|
*/
|
|
|
|
#ifndef __DLLS_OPENGL32_OPENGL_EXT_H
|
|
|
|
#define __DLLS_OPENGL32_OPENGL_EXT_H
|
|
|
|
|
2012-07-17 00:00:55 +02:00
|
|
|
#include "windef.h"
|
2012-11-07 13:15:24 +01:00
|
|
|
#include "wine/wgl.h"
|
2002-09-25 02:29:56 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
typedef struct {
|
2003-10-04 05:04:45 +02:00
|
|
|
const char *name; /* name of the extension */
|
2006-10-29 22:56:27 +01:00
|
|
|
const char *extension; /* name of the GL/WGL extension */
|
2000-05-12 22:18:14 +02:00
|
|
|
void *func; /* pointer to the Wine function for this extension */
|
|
|
|
} OpenGL_extension;
|
|
|
|
|
2006-06-09 16:11:38 +02:00
|
|
|
extern const OpenGL_extension extension_registry[];
|
|
|
|
extern const int extension_registry_size;
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2012-07-17 00:00:55 +02:00
|
|
|
extern BOOL WINAPI wglSetPixelFormatWINE( HDC hdc, int format );
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
#endif /* __DLLS_OPENGL32_OPENGL_EXT_H */
|