]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/wingdi.h (CS_*): Correct WINVER guard on
authorDanny Smith <dannysmith@users.sourceforge.net>
Mon, 6 Mar 2006 21:13:43 +0000 (21:13 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Mon, 6 Mar 2006 21:13:43 +0000 (21:13 +0000)
Image Color Matching colour definitions.

winsup/w32api/ChangeLog
winsup/w32api/include/wingdi.h

index 9bb8b1b4c1fc5de98762a842f3621b6ab3c75902..c6d86bf4b1b8c31f5fe59d6e84d897e09efa545e 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
+       * include/wingdi.h (CS_*): Correct WINVER guard on
+       Image Color Matching colour definitions.
+
 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * include/shlobj.h (SFGAO_ISSLOW): Define.
index 108a3f2d2b57062604354749c46d9c5fdebaecee..0157b7be6be8521e764ca0a4eaece14eae37fee3 100644 (file)
@@ -1196,12 +1196,12 @@ extern "C" {
 #define AC_DST_NO_ALPHA                0x20
 #define LAYOUT_RTL 1
 #define LAYOUT_BITMAPORIENTATIONPRESERVED 8
-#if (WINVER > 0x400)
+#if (WINVER >= 0x0400)
 #define CS_ENABLE           0x00000001
 #define CS_DISABLE          0x00000002
 #define CS_DELETE_TRANSFORM 0x00000003
 #endif
-#if (WINVER >= 0x500)
+#if (WINVER >= 0x0500)
 #define GRADIENT_FILL_RECT_H 0x00
 #define GRADIENT_FILL_RECT_V 0x01
 #define GRADIENT_FILL_TRIANGLE 0x02
This page took 0.04103 seconds and 5 git commands to generate.