1#ifndef HELPER_MACROS_H 2#define HELPER_MACROS_H 3 4#define LIST_NEXT_ITEM(curItem, type) ((type *)((s32)curItem + sizeof(type))) 5 6#endif // HELPER_MACROS_H 7 8