shithub: cstory

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