* include/wingdi.h (CS_*): Correct WINVER guard on

Image Color Matching colour definitions.
This commit is contained in:
Danny Smith 2006-03-06 21:13:43 +00:00
parent f511869c92
commit fc03f99fd3
2 changed files with 6 additions and 2 deletions

View 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> 2006-03-06 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (SFGAO_ISSLOW): Define. * include/shlobj.h (SFGAO_ISSLOW): Define.

View File

@ -1196,12 +1196,12 @@ extern "C" {
#define AC_DST_NO_ALPHA 0x20 #define AC_DST_NO_ALPHA 0x20
#define LAYOUT_RTL 1 #define LAYOUT_RTL 1
#define LAYOUT_BITMAPORIENTATIONPRESERVED 8 #define LAYOUT_BITMAPORIENTATIONPRESERVED 8
#if (WINVER > 0x400) #if (WINVER >= 0x0400)
#define CS_ENABLE 0x00000001 #define CS_ENABLE 0x00000001
#define CS_DISABLE 0x00000002 #define CS_DISABLE 0x00000002
#define CS_DELETE_TRANSFORM 0x00000003 #define CS_DELETE_TRANSFORM 0x00000003
#endif #endif
#if (WINVER >= 0x500) #if (WINVER >= 0x0500)
#define GRADIENT_FILL_RECT_H 0x00 #define GRADIENT_FILL_RECT_H 0x00
#define GRADIENT_FILL_RECT_V 0x01 #define GRADIENT_FILL_RECT_V 0x01
#define GRADIENT_FILL_TRIANGLE 0x02 #define GRADIENT_FILL_TRIANGLE 0x02