Skip to content
Snippets Groups Projects
Commit 1dd71e49 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

This value is apparently sometimes an enum, sometimes a macro.

Just use the raw value and a comment.
parent 2e2ab251
No related branches found
No related tags found
No related merge requests found
Pipeline #5738 passed
...@@ -39,8 +39,6 @@ static LONG window_left, window_top; ...@@ -39,8 +39,6 @@ static LONG window_left, window_top;
#define WM_USER_SETPOS (WM_USER + 2) #define WM_USER_SETPOS (WM_USER + 2)
#define WM_USER_SETCURSOR (WM_USER + 3) #define WM_USER_SETCURSOR (WM_USER + 3)
#define LCS_WINDOWS_COLOR_SPACE 0x57696E20
// Used to create a DI bitmap from bitmap_con data // Used to create a DI bitmap from bitmap_con data
static BITMAPV5HEADER b5hdr = { static BITMAPV5HEADER b5hdr = {
.bV5Size = sizeof(BITMAPV5HEADER), .bV5Size = sizeof(BITMAPV5HEADER),
...@@ -53,7 +51,7 @@ static BITMAPV5HEADER b5hdr = { ...@@ -53,7 +51,7 @@ static BITMAPV5HEADER b5hdr = {
.bV5RedMask = 0x00ff0000, .bV5RedMask = 0x00ff0000,
.bV5GreenMask = 0x0000ff00, .bV5GreenMask = 0x0000ff00,
.bV5BlueMask = 0x000000ff, .bV5BlueMask = 0x000000ff,
.bV5CSType = LCS_WINDOWS_COLOR_SPACE, .bV5CSType = 0x57696E20, /* LCS_WINDOWS_COLOR_SPACE */
.bV5Intent = LCS_GM_BUSINESS, .bV5Intent = LCS_GM_BUSINESS,
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment