diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-12-30 06:48:50 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-12-30 06:48:50 +0000 |
commit | c8eb82fe9f9458fdf8bbfd12a28413796c42c31c (patch) | |
tree | 48f48b75ea403a452d4f0614226f1883686d77cc | |
parent | af9955fa9c1cb427c1176cf17f47c742571091a4 (diff) | |
download | newlib-c8eb82fe9f9458fdf8bbfd12a28413796c42c31c.zip newlib-c8eb82fe9f9458fdf8bbfd12a28413796c42c31c.tar.gz newlib-c8eb82fe9f9458fdf8bbfd12a28413796c42c31c.tar.bz2 |
* include/wingdi.h (wglGetLayerPaletteEntries): Correct
prototype. Thanks to: Joe Krahn <jkrahn at nc dot rr dot com>.
ChangeLog: Remove some whitespace.
-rw-r--r-- | winsup/w32api/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/w32api/include/wingdi.h | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 9d845d5..91bc639 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +2002-12-30 Danny Smith <dannysmith@users.sourceforge.net> + + * include/wingdi.h (wglGetLayerPaletteEntries): Correct + prototype. Thanks to: Joe Krahn <jkrahn at nc dot rr dot com>. + 2002-12-26 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR. @@ -1398,7 +1403,6 @@ * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant. (FILE_ATTRIBUTE_DEVICE): Add define. - 2002-01-14 Corinna Vinschen <vinschen@redhat.com> * include/winnt.h: Add INVALID_FILE_ATTRIBUTES. diff --git a/winsup/w32api/include/wingdi.h b/winsup/w32api/include/wingdi.h index effb6e1..1d6d2a0 100644 --- a/winsup/w32api/include/wingdi.h +++ b/winsup/w32api/include/wingdi.h @@ -2722,7 +2722,7 @@ BOOL WINAPI wglDeleteContext(HGLRC); BOOL WINAPI wglDescribeLayerPlane(HDC,int,int,UINT,LPLAYERPLANEDESCRIPTOR); HGLRC WINAPI wglGetCurrentContext(void); HDC WINAPI wglGetCurrentDC(void); -int WINAPI wglGetLayerPaletteEntries(HDC,int,int,int,CONST COLORREF*); +int WINAPI wglGetLayerPaletteEntries(HDC,int,int,int,COLORREF*); PROC WINAPI wglGetProcAddress(LPCSTR); BOOL WINAPI wglMakeCurrent(HDC,HGLRC); BOOL WINAPI wglRealizeLayerPalette(HDC,int,BOOL); |