mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
13 lines
No EOL
208 B
C
13 lines
No EOL
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 |