Files
libsm64/src/decomp/memory.h
T
2020-10-27 13:26:58 -06:00

15 lines
412 B
C

#pragma once
#include "include/types.h"
struct AllocOnlyPool;
extern void memory_init(void);
extern void memory_terminate(void);
extern struct AllocOnlyPool *alloc_only_pool_init(void);
extern void *alloc_only_pool_alloc(struct AllocOnlyPool *pool, s32 size);
extern void alloc_only_pool_free(struct AllocOnlyPool *pool);
extern void display_list_pool_reset(void);
extern void *alloc_display_list(u32 size);