From 25e3c303b8f47785a0056077a66b7a77449ff827 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sat, 25 Feb 2023 12:25:33 -0400 Subject: TMenuList: Add `TMenuList`, and everything else that's needed to get it working I feel this is a good starting point for working on the protocol related code. --- include/pso/macros.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/pso/macros.h') diff --git a/include/pso/macros.h b/include/pso/macros.h index 8d76186..1434e16 100644 --- a/include/pso/macros.h +++ b/include/pso/macros.h @@ -55,4 +55,6 @@ #define FOREACH_NODE_MULTI_ITER(type, first, varname, ...) for (type *varname = (type *)(first); varname != NULL; varname = (type *)(varname->next()), __VA_ARGS__) #define FOREACH_NODE_NODECL_MULTI_ITER(type, first, varname, ...) for (varname = (type *)(first); varname != NULL; varname = (type *)(varname->next()), __VA_ARGS__) +#define __packed__ + #endif -- cgit v1.2.3-13-gbd6f