Commit 30f67b15 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

wingdi.h: Multi-character character constants are implementation specific…

wingdi.h: Multi-character character constants are implementation specific according to the C standard. Use a hex number instead.
parent 16381518
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment