shithub: cstory

ref: 132d3c511072eb4d380c3f5c5c7dd1a7029dbeaf
dir: /src/WindowsWrapper.h/

View raw version
#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();