shithub: cstory

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