NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
nw4r::ut Namespace Reference

Description

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)

Function Documentation

◆ List_Init()

void nw4r::ut::List_Init ( List * list,
u16 offset )

Definition at line 6 of file ut_list.cpp.

◆ List_Append()

void nw4r::ut::List_Append ( List * list,
void * obj )

Definition at line 13 of file ut_list.cpp.

◆ List_Prepend()

void nw4r::ut::List_Prepend ( List * list,
void * obj )

Definition at line 38 of file ut_list.cpp.

◆ List_Insert()

void nw4r::ut::List_Insert ( List * list,
void * target,
void * obj )

Definition at line 63 of file ut_list.cpp.

◆ List_Remove()

void nw4r::ut::List_Remove ( List * list,
void * obj )

Definition at line 91 of file ut_list.cpp.

◆ List_GetNext()

void * nw4r::ut::List_GetNext ( const List * list,
const void * obj )

Definition at line 118 of file ut_list.cpp.

◆ List_GetPrev()

void * nw4r::ut::List_GetPrev ( const List * list,
const void * obj )

Definition at line 126 of file ut_list.cpp.