diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-22 19:10:56 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-22 19:10:56 -0400 |
commit | 0d0f5b70b03e271d05cd30ccacddd55d75c4e530 (patch) | |
tree | 7ab7010abde683379b2cb6e63ded0dbbf4ab4388 /include/list_menu_items.h | |
parent | 6d1fe6e7fdb5eae0dec5ec463ddf1fac0c1316e2 (diff) |
Silence compiler warnings
Diffstat (limited to 'include/list_menu_items.h')
-rw-r--r-- | include/list_menu_items.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/list_menu_items.h b/include/list_menu_items.h index a102c449..ec96d480 100644 --- a/include/list_menu_items.h +++ b/include/list_menu_items.h @@ -2,6 +2,7 @@ #define POKEDIAMOND_LIST_MENU_ITEMS_H #include "string16.h" +#include "msgdata.h" struct ListMenuItem { @@ -9,4 +10,12 @@ struct ListMenuItem s32 value; }; +struct ListMenuItem * ListMenuItems_ctor(u32 count, u32 heap_id); +void ListMenuItems_dtor(struct ListMenuItem * items); +void ListMenuItems_AppendFromMsgData(struct ListMenuItem * items, struct MsgData * msgData, u32 msgNo, s32 value); +void ListMenuItems_AddItem(struct ListMenuItem * items, struct String * str, s32 value); +void ListMenuItems_CopyItem(struct ListMenuItem * items, struct ListMenuItem * src); +struct ListMenuItem * ListMenuItems_SeekEnd(struct ListMenuItem * items, u32 * heap_id_p); +void ListMenuItems_DestroyMenuStrings(struct ListMenuItem * items); + #endif // POKEDIAMOND_LIST_MENU_ITEMS_H |