From 0d609111532874e67dfe43959ed30e24a78cc606 Mon Sep 17 00:00:00 2001 From: superp00t Date: Thu, 4 Jul 2024 17:47:10 -0400 Subject: [PATCH] fix(common): depend on squall for handle declaration macro --- common/Handle.hpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/common/Handle.hpp b/common/Handle.hpp index b3b26ee..783c3dd 100644 --- a/common/Handle.hpp +++ b/common/Handle.hpp @@ -5,11 +5,9 @@ #include #include -typedef void* HANDLE; +#include -#define DECLARE_HANDLE(name) \ - struct name##__; \ - typedef struct name##__* name +typedef void* HANDLE; DECLARE_HANDLE(HOBJECT);