ref: 6e53250a2022216b383ea321af3c143c5fb13e5e
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; };