shithub: cstory

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