shithub: cstory

ref: 5290ce3bd5a6fa217b625877b851b8b66efb0f79
dir: /src/WindowsWrapper.h/

View raw version
#pragma once

int rep_rand();
void rep_srand(unsigned int seed);

typedef int BOOL;
typedef unsigned char BOOLEAN;

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