shithub: cstory

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