* include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
Thanks to Will Levine <willll@users.sourceforge.net>
This commit is contained in:
parent
1de0716442
commit
cb16ce2c2e
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue