mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 12:59:44 +00:00
df800c74ae
* begin prerender * match func_801716C4 * copy more docs from OoT * begin func_801720FC * improve func_801720FC * match func_801720FC * background 2D * merge master * func_801717F8 attempt * z64prerender.h * import bss * non-equivalent * document func_801716C4 * cleanup comments * import tharo docs * minor improvement on PreRender_DivotFilter * Match PreRender_DivotFilter * Remove fakes * format * Fix comment about RM_VISCVG in PreRender_FetchFbufCoverage * PreRender cleanup * PR Review * review * listalloc.h * bss * capitalization --------- Co-authored-by: angie <angheloalf95@gmail.com> Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
17 lines
390 B
C
17 lines
390 B
C
#ifndef LISTALLOC_H
|
|
#define LISTALLOC_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
typedef struct ListAlloc {
|
|
/* 0x0 */ struct ListAlloc* prev;
|
|
/* 0x4 */ struct ListAlloc* next;
|
|
} ListAlloc; // size = 0x8
|
|
|
|
ListAlloc* ListAlloc_Init(ListAlloc* this);
|
|
void* ListAlloc_Alloc(ListAlloc* this, size_t size);
|
|
void ListAlloc_Free(ListAlloc* this, void* data);
|
|
void ListAlloc_FreeAll(ListAlloc* this);
|
|
|
|
#endif
|