ref: 97d5373fa559b2b1229b7465d38a501e941ee604
dir: /src/WindowsWrapper.h/
#pragma once
#define RGB(r,g,b) ((r) | ((g) << 8) | ((b) << 16))
typedef bool BOOL;
#define FALSE false
#define TRUE true
struct RECT
{
	long left;
	long top;
	long right;
	long bottom;
};