shithub: cstory

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