ref: efec3d420d60b03cf7b619f310f0a943a40fa0be
dir: /src/WindowsWrapper.h/
#pragma once
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();