opengl_ext.h 1.69 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
#include "windef.h"
23 24
#include "winbase.h"
#include "wingdi.h"
25
#include "wine/wgl.h"
26
#include "wine/wgl_driver.h"
27

Lionel Ulmer's avatar
Lionel Ulmer committed
28
typedef struct {
29
  const char  *name;     /* name of the extension */
30
  const char  *extension; /* name of the GL/WGL extension */
Lionel Ulmer's avatar
Lionel Ulmer committed
31 32 33
  void  *func;     /* pointer to the Wine function for this extension */
} OpenGL_extension;

34 35
extern const OpenGL_extension extension_registry[] DECLSPEC_HIDDEN;
extern const int extension_registry_size DECLSPEC_HIDDEN;
36
extern struct opengl_funcs null_opengl_funcs DECLSPEC_HIDDEN;
Lionel Ulmer's avatar
Lionel Ulmer committed
37

38 39 40 41 42 43 44
static inline struct opengl_funcs *get_dc_funcs( HDC hdc )
{
    struct opengl_funcs *funcs = __wine_get_wgl_driver( hdc, WINE_WGL_DRIVER_VERSION );
    if (!funcs) SetLastError( ERROR_INVALID_HANDLE );
    else if (funcs == (void *)-1) funcs = &null_opengl_funcs;
    return funcs;
}
45

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