diff options
-rw-r--r-- | include/pso/macros.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/pso/macros.h b/include/pso/macros.h index afe5400..4e7ad0c 100644 --- a/include/pso/macros.h +++ b/include/pso/macros.h @@ -58,6 +58,7 @@ #define FOREACH_NODE_NODECL_MULTI_ITER(type, first, varname, ...) for (varname = (type *)(first); varname != NULL; varname = (type *)(varname->next()), __VA_ARGS__) #define __packed__ +#define WEAK_FUNC __declspec(weak) #define PRIVATE_MEMBER_GETTER(type, name) \ type name() { \ |