chore(log): remove redundant Common.hpp

This commit is contained in:
VDm 2024-02-21 01:18:06 +04:00
parent 50d7d5aab6
commit 3c97ee3083
3 changed files with 19 additions and 23 deletions

View file

@ -7,4 +7,18 @@
typedef struct name##__* name
#endif
#if !defined(DECLARE_STRICT_HANDLE)
#define DECLARE_STRICT_HANDLE(name) \
typedef struct name##__ { \
int unused; \
}* name
#endif
#if !defined(DECLARE_DERIVED_HANDLE)
#define DECLARE_DERIVED_HANDLE(name, base) \
typedef struct name##__ : public base##__ { \
int unused; \
}* name
#endif
#endif