ref: 08b14fa03f5225428d17a9c8022f26c599e68f25
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; };