OSDN Git Service

* include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
authordannysmith <dannysmith>
Wed, 17 Sep 2003 20:41:53 +0000 (20:41 +0000)
committerdannysmith <dannysmith>
Wed, 17 Sep 2003 20:41:53 +0000 (20:41 +0000)
Thanks to Will Levine  <willll@users.sourceforge.net>

winsup/w32api/ChangeLog
winsup/w32api/include/winuser.h

index b85e99e..6806e5c 100644 (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
index 35f5643..cba9596 100644 (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