diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-24 22:54:04 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-24 22:54:04 +1100 |
commit | b38313c518d99a43c8a2438ea20f1cf84636d794 (patch) | |
tree | 5bbaefe6bc1d36c6184c18a129bff3bab91465ac /src/defines.h | |
parent | b27cfd40b88a4c2689560b3d3235c8579b9778f6 (diff) |
add handle def macro
Diffstat (limited to 'src/defines.h')
-rw-r--r-- | src/defines.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/defines.h b/src/defines.h index 79b735d..52aa7b0 100644 --- a/src/defines.h +++ b/src/defines.h @@ -42,6 +42,13 @@ _Static_assert(sizeof(ptrdiff_t) == 8, ""); #define alignof(x) _Alignof(x) +// Wrap a u32 to make a type-safe "handle" or ID +#define CORE_DEFINE_HANDLE(name) \ + typedef struct name name; \ + struct name { \ + u32 raw; \ + } + /* Possible platform defines: #define CEL_PLATFORM_LINUX 1 |