mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
13 lines
208 B
C
13 lines
208 B
C
|
|
#ifndef COMMON_HANDLE_H
|
||
|
|
#define COMMON_HANDLE_H
|
||
|
|
|
||
|
|
#include "system/types.h"
|
||
|
|
|
||
|
|
#if !defined(DECLARE_HANDLE)
|
||
|
|
#define DECLARE_HANDLE(name) \
|
||
|
|
typedef struct name##__ { \
|
||
|
|
int32_t unused; \
|
||
|
|
}* name
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|