diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-01-25 17:33:13 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-01-25 17:33:13 +0000 |
commit | f3cf636e571eaa719ea79a1076f2e11a9b9a43fa (patch) | |
tree | 953daaff1a61eb44b7abce0247e7d90f1a2b0d4d /include | |
parent | 166b0ff973b695c4a46b1825899c8bf10d1494b9 (diff) |
WGL_ARB_extensions_string extension
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/mesa_wgl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/GL/mesa_wgl.h b/include/GL/mesa_wgl.h index 21473763ed..acc7eac2a7 100644 --- a/include/GL/mesa_wgl.h +++ b/include/GL/mesa_wgl.h @@ -111,6 +111,15 @@ WGLAPI int GLAPIENTRY DescribePixelFormat(HDC,int,unsigned int,LPPIXELFORMATDE WGLAPI int GLAPIENTRY GetPixelFormat(HDC); WGLAPI int GLAPIENTRY SetPixelFormat(HDC,int,const PIXELFORMATDESCRIPTOR *); + +#ifndef WGL_ARB_extensions_string +#define WGL_ARB_extensions_string 1 + +WGLAPI const char * GLAPIENTRY wglGetExtensionsStringARB(HDC hdc); + +#endif /* WGL_ARB_extensions_string */ + + #ifdef _MSC_VER # pragma warning( pop ) #endif |