shithub: cstory

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