shithub: cstory

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