shithub: cstory

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