|
NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
|
Debugging library which includes various utilities used by the rest of nw4r.
Functions | |
| void | List_Init (List *list, u16 offset) |
| void | List_Append (List *list, void *obj) |
| void | List_Prepend (List *list, void *obj) |
| void | List_Insert (List *list, void *target, void *obj) |
| void | List_Remove (List *list, void *obj) |
| void * | List_GetNext (const List *list, const void *obj) |
| void * | List_GetPrev (const List *list, const void *obj) |
| void nw4r::ut::List_Init | ( | List * | list, |
| u16 | offset ) |
Definition at line 6 of file ut_list.cpp.
| void nw4r::ut::List_Append | ( | List * | list, |
| void * | obj ) |
Definition at line 13 of file ut_list.cpp.
| void nw4r::ut::List_Prepend | ( | List * | list, |
| void * | obj ) |
Definition at line 38 of file ut_list.cpp.
| void nw4r::ut::List_Insert | ( | List * | list, |
| void * | target, | ||
| void * | obj ) |
Definition at line 63 of file ut_list.cpp.
| void nw4r::ut::List_Remove | ( | List * | list, |
| void * | obj ) |
Definition at line 91 of file ut_list.cpp.
| void * nw4r::ut::List_GetNext | ( | const List * | list, |
| const void * | obj ) |
Definition at line 118 of file ut_list.cpp.
| void * nw4r::ut::List_GetPrev | ( | const List * | list, |
| const void * | obj ) |
Definition at line 126 of file ut_list.cpp.