shithub: cstory

ref: a8cf5e1846bb20f283c1bd65e0b660394df782d7
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;