shithub: cstory

ref: 767c2972ae09642c63528c2efbe4adf77f9a6e11
dir: /src/WindowsWrapper.h/

View raw version
#pragma once

#define rand _rand
#define srand _srand
int _rand();
void _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();