shithub: cstory

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