shithub: cstory

ref: f81fd7b1cde3fe79b9e85ab93615be0000d813f9
dir: /src/WindowsWrapper.h/

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