diff options
author | Karl Schultz <[email protected]> | 2005-07-01 15:56:14 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2005-07-01 15:56:14 +0000 |
commit | 9b5678198604a3f959af990f5a4dd39d799ef667 (patch) | |
tree | 8a076898b8d822d33cdddf2915f2c363adc92a35 /src | |
parent | 758f334717eaf6700defcde126cb9194155a2264 (diff) |
Fix a prototype
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/windows/gdi/wgl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/windows/gdi/wgl.c b/src/mesa/drivers/windows/gdi/wgl.c index fcb24235e88..2d3f696fb55 100644 --- a/src/mesa/drivers/windows/gdi/wgl.c +++ b/src/mesa/drivers/windows/gdi/wgl.c @@ -1,4 +1,4 @@ -/* $Id: wgl.c,v 1.8 2005/06/13 14:07:15 brianp Exp $ */ +/* $Id: wgl.c,v 1.9 2005/07/01 15:56:14 kschultz Exp $ */ /* * This library is free software; you can redistribute it and/or @@ -301,10 +301,10 @@ WINGDIAPI int GLAPIENTRY wglChoosePixelFormat(HDC hdc, return(best); } -WGLAPI int GLAPIENTRY wglDescribePixelFormat(HDC hdc, - int iPixelFormat, - UINT nBytes, - LPPIXELFORMATDESCRIPTOR ppfd) +WINGDIAPI int GLAPIENTRY wglDescribePixelFormat(HDC hdc, + int iPixelFormat, + UINT nBytes, + LPPIXELFORMATDESCRIPTOR ppfd) { (void) hdc; |