Francois Gouget : gdi32: Make wglCreateContextAttribsARB() static.
Module: wine Branch: master Commit: 4874d84ac165343cea6651d148bf5642cbeb764a URL: http://source.winehq.org/git/wine.git/?a=commit;h=4874d84ac165343cea6651d148... Author: Francois Gouget <fgouget(a)free.fr> Date: Tue Nov 24 11:02:14 2009 +0100 gdi32: Make wglCreateContextAttribsARB() static. --- dlls/gdi32/opengl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/gdi32/opengl.c b/dlls/gdi32/opengl.c index 0be4037..9193fc5 100644 --- a/dlls/gdi32/opengl.c +++ b/dlls/gdi32/opengl.c @@ -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 );
participants (1)
-
Alexandre Julliard