RDW_FRAME should be RDW_NOFRAME when validating (spotted by Duane
[wine/multimedia.git] / dlls / opengl32 / opengl_ext.h
blobe0f3d4d4e9d635481c0591d70b7e5e882aa1c205
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef __DLLS_OPENGL32_OPENGL_EXT_H
20 #define __DLLS_OPENGL32_OPENGL_EXT_H
22 typedef struct {
23 char *name; /* name of the extension */
24 char *glx_name; /* name used on Unix's libGL */
25 void *func; /* pointer to the Wine function for this extension */
26 void **func_ptr; /* where to store the value of glXGetProcAddressARB */
27 } OpenGL_extension;
29 extern OpenGL_extension extension_registry[];
30 extern int extension_registry_size;
32 #endif /* __DLLS_OPENGL32_OPENGL_EXT_H */