shithub: cstory

ref: 8114f88dd1f27674e2a43527c943ae7e8e0cb1e7
dir: /src/WindowsWrapper.h/

View raw version
#pragma once

#include <windows.h>
// Avoid name collisions
#undef DrawText
#undef FindResource
#undef CreateWindow

#define SET_RECT(rect, l, t, r, b) \
	rect.left = l; \
	rect.top = t; \
	rect.right = r; \
	rect.bottom = b;