shithub: cstory

ref: f8791a7d39576f370f1d23d4fda9b1dc8efe40d8
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();