* include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.

Thanks to Will Levine  <willll@users.sourceforge.net>
This commit is contained in:
Danny Smith 2003-09-17 20:41:53 +00:00
parent 1de0716442
commit cb16ce2c2e
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2003-09-17 Danny Smith <dannysmith@users.sourceforge.net>
* include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
Thanks to Will Levine <willll@users.sourceforge.net>
2003-09-15 Danny Smith <dannysmith@users.sourceforge.net>
* include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to

View file

@ -3416,8 +3416,10 @@ BOOL WINAPI LockSetForegroundWindow(UINT);
#endif
#if(_WIN32_WINNT >= 0x0500)
BOOL WINAPI SetLayeredWindowAttributes(HWND,COLORREF,BYTE,DWORD);
#ifndef NOGDI
BOOL WINAPI UpdateLayeredWindow(HWND,HDC,POINT*,SIZE*,HDC,POINT*,COLORREF,BLENDFUNCTION*,DWORD);
#endif
#endif
#if(_WIN32_WINNT >= 0x0501)
BOOL WINAPI GetLayeredWindowAttributes(HWND,COLORREF*,BYTE*,DWORD*);
#endif