From a5df6ebc72e0b2529e6d420058da266587373c89 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 7 Jan 2020 23:15:33 +0000 Subject: [PATCH] Remove SET_RECT macro I should probably remove WindowsWrapper.h from this branch now, and just make files use windows.h directly. --- src/WindowsWrapper.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/WindowsWrapper.h b/src/WindowsWrapper.h index 47810b8d..40235a3d 100644 --- a/src/WindowsWrapper.h +++ b/src/WindowsWrapper.h @@ -1,9 +1,3 @@ #pragma once #include - -#define SET_RECT(rect, l, t, r, b) \ - rect.left = l; \ - rect.top = t; \ - rect.right = r; \ - rect.bottom = b;