shithub: cstory

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