shithub: cstory

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