Remove SET_RECT macro

I should probably remove WindowsWrapper.h from this branch now, and
just make files use windows.h directly.
This commit is contained in:
Clownacy 2020-01-07 23:15:33 +00:00
parent cb4bd02ab5
commit a5df6ebc72

View file

@ -1,9 +1,3 @@
#pragma once #pragma once
#include <windows.h> #include <windows.h>
#define SET_RECT(rect, l, t, r, b) \
rect.left = l; \
rect.top = t; \
rect.right = r; \
rect.bottom = b;