shithub: cstory

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