shithub: cstory

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