Commit 1218c2b5 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

wingdi.h: Fix RGBQUAD and RGBTRIPLE to match PSDK.

parent d05f1d3e
......@@ -1775,14 +1775,14 @@ typedef struct tagEXTLOGPEN
/* Device-independent bitmaps */
typedef struct {
typedef struct tagRGBQUAD {
BYTE rgbBlue;
BYTE rgbGreen;
BYTE rgbRed;
BYTE rgbReserved;
} RGBQUAD, *LPRGBQUAD;
typedef struct {
typedef struct tagRGBTRIPLE {
BYTE rgbtBlue;
BYTE rgbtGreen;
BYTE rgbtRed;
......
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