mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-24 07:43:57 -04:00
win32 clipboard: fix for BI_ALPHABITFIELDS narrow support (#5586)
* win32 clipbaord: fix for BI_ALPHABITFIELDS narrow support * Define BI_ALPHABITFIELDS even if wingdi headers are already included since BI_ALPHABITFIELDS is not always defined there
This commit is contained in:
2
src/external/win32_clipboard.h
vendored
2
src/external/win32_clipboard.h
vendored
@ -178,7 +178,9 @@ typedef struct tagRGBQUAD {
|
|||||||
#define BI_CMYK 0x000B
|
#define BI_CMYK 0x000B
|
||||||
#define BI_CMYKRLE8 0x000C
|
#define BI_CMYKRLE8 0x000C
|
||||||
#define BI_CMYKRLE4 0x000D
|
#define BI_CMYKRLE4 0x000D
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef BI_ALPHABITFIELDS
|
||||||
// Bitmap not compressed and that the color table consists of four DWORD color masks,
|
// Bitmap not compressed and that the color table consists of four DWORD color masks,
|
||||||
// that specify the red, green, blue, and alpha components of each pixel
|
// that specify the red, green, blue, and alpha components of each pixel
|
||||||
#define BI_ALPHABITFIELDS 0x0006
|
#define BI_ALPHABITFIELDS 0x0006
|
||||||
|
|||||||
Reference in New Issue
Block a user