Module: wine Branch: master Commit: ccfdb827b53fdb7005a408f415f1d9ecf9a78581 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ccfdb827b53fdb7005a408f415...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Thu Jul 19 15:44:10 2012 +0900
include: Add PixelFormat32bppCMYK definition.
---
include/gdipluspixelformats.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/include/gdipluspixelformats.h b/include/gdipluspixelformats.h index d7382f1..27843a2 100644 --- a/include/gdipluspixelformats.h +++ b/include/gdipluspixelformats.h @@ -46,7 +46,8 @@ typedef INT PixelFormat; #define PixelFormat48bppRGB (12 | (48 << 8) | PixelFormatExtended) #define PixelFormat64bppARGB (13 | (64 << 8) | PixelFormatAlpha | PixelFormatCanonical | PixelFormatExtended) #define PixelFormat64bppPARGB (14 | (64 << 8) | PixelFormatAlpha | PixelFormatPAlpha | PixelFormatExtended) -#define PixelFormatMax 15 +#define PixelFormat32bppCMYK (15 | (32 << 8)) +#define PixelFormatMax 16
#ifdef __cplusplus