shithub: cstory

ref: 8f8c481b2d755d7e9b34093c3c57aa66a6e7fc73
dir: /src/WindowsWrapper.h/

View raw version
#pragma once
struct RECT
{
	union
	{
		int left;
		int front;
	};
	int top;
	union
	{
		int right;
		int back;
	};
	int bottom;
};

bool SystemTask();