ref: 45cde7e4a3dc80865965174f56e7e19ff73e81e8
dir: /src/WindowsWrapper.h/
#pragma once int rep_rand(); void rep_srand(unsigned int seed); typedef int BOOL; #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE 1 #endif struct RECT { union { int left; int front; }; int top; union { int right; int back; }; int bottom; }; bool SystemTask();