shithub: cstory

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