shithub: cstory

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