summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-26 19:12:55 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-26 19:12:55 -0400
commitda739f32830ef19b3400cbdf1ba18f5342abe7f0 (patch)
tree556a2b518a15e9972691998907641e5e28573297 /include
parente140c56525cca0eb490bdd77eac4701f4748d34f (diff)
pso/macros: Add `EXTERN_OBJECT_NAME` macro
Diffstat (limited to 'include')
-rw-r--r--include/pso/macros.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pso/macros.h b/include/pso/macros.h
index a341b7f..e93e2de 100644
--- a/include/pso/macros.h
+++ b/include/pso/macros.h
@@ -1,6 +1,8 @@
#ifndef MACROS_H
#define MACROS_H
+#define EXTERN_OBJECT_NAME(name) extern const char *name##_name;
+
#define OBJECT_NAME(name) const char *name##_name = #name;
#define OBJECT_NAMES \
o(TObject) \