shithub: cstory

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