gdi32: Make wglCreateContextAttribsARB() static.

This commit is contained in:
Francois Gouget 2009-11-24 11:02:14 +01:00 committed by Alexandre Julliard
parent d442a48e2a
commit 4874d84ac1
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ HGLRC WINAPI wglCreateContext(HDC hdc)
/***********************************************************************
* wglCreateContextAttribsARB
*/
HGLRC WINAPI wglCreateContextAttribsARB(HDC hdc, HGLRC hShareContext, const int *attributeList)
static HGLRC WINAPI wglCreateContextAttribsARB(HDC hdc, HGLRC hShareContext, const int *attributeList)
{
HGLRC ret = 0;
DC * dc = get_dc_ptr( hdc );