ref: 95e5e859a3d3b2105f4c7c88b1b824cbd01b2d69
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();