Add the RGB macro to the windows.h wrapper

This commit is contained in:
Clownacy 2020-01-22 23:52:31 +00:00
parent 2f4eb464a5
commit 8798a7cc19

View file

@ -2,6 +2,8 @@
#include <stdio.h>
#define RGB(r,g,b) ((r) | ((g) << 8) | ((b) << 16))
typedef bool BOOL;
#define FALSE false