ref: 52c2a5ceee262e18b7e4ff7f3c117ab765c1efc8
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; };