Michael Stefaniuc : wingdi.h: Multi-character character constants are implementation specific according to the C standard . Use a hex number instead.
Module: wine Branch: master Commit: 30f67b1534075adc81421f36d698df0af79d8cab URL: http://source.winehq.org/git/wine.git/?a=commit;h=30f67b1534075adc81421f36d6... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Mon Jun 4 23:09:26 2007 +0200 wingdi.h: Multi-character character constants are implementation specific according to the C standard. Use a hex number instead. --- include/wingdi.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wingdi.h b/include/wingdi.h index 77ad737..0215922 100644 --- a/include/wingdi.h +++ b/include/wingdi.h @@ -1851,8 +1851,8 @@ typedef struct { DWORD bV5Reserved; } BITMAPV5HEADER, *LPBITMAPV5HEADER, *PBITMAPV5HEADER; -#define PROFILE_LINKED 'LINK' -#define PROFILE_EMBEDDED 'MBED' +#define PROFILE_LINKED 0x4c494e4b /* 'LINK' */ +#define PROFILE_EMBEDDED 0x4d424544 /* 'MBED' */ /* biCompression */
participants (1)
-
Alexandre Julliard