shithub: cstory

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