RetroArch
|
#include <wiiu/types.h>
Go to the source code of this file.
Classes | |
struct | MEMMemoryLink |
struct | MEMMemoryList |
Typedefs | |
typedef struct MEMMemoryLink | MEMMemoryLink |
typedef struct MEMMemoryList | MEMMemoryList |
Functions | |
void | MEMInitList (MEMMemoryList *list, uint16_t offsetToMemoryLink) |
void | MEMAppendListObject (MEMMemoryList *list, void *object) |
void | MEMPrependListObject (MEMMemoryList *list, void *object) |
void | MEMInsertListObject (MEMMemoryList *list, void *before, void *object) |
void | MEMRemoveListObject (MEMMemoryList *list, void *object) |
void * | MEMGetNextListObject (MEMMemoryList *list, void *object) |
void * | MEMGetPrevListObject (MEMMemoryList *list, void *object) |
void * | MEMGetNthListObject (MEMMemoryList *list, uint16_t n) |
typedef struct MEMMemoryLink MEMMemoryLink |
typedef struct MEMMemoryList MEMMemoryList |
void MEMAppendListObject | ( | MEMMemoryList * | list, |
void * | object | ||
) |
void* MEMGetNextListObject | ( | MEMMemoryList * | list, |
void * | object | ||
) |
void* MEMGetNthListObject | ( | MEMMemoryList * | list, |
uint16_t | n | ||
) |
void* MEMGetPrevListObject | ( | MEMMemoryList * | list, |
void * | object | ||
) |
void MEMInitList | ( | MEMMemoryList * | list, |
uint16_t | offsetToMemoryLink | ||
) |
void MEMInsertListObject | ( | MEMMemoryList * | list, |
void * | before, | ||
void * | object | ||
) |
void MEMPrependListObject | ( | MEMMemoryList * | list, |
void * | object | ||
) |
void MEMRemoveListObject | ( | MEMMemoryList * | list, |
void * | object | ||
) |