SSBM Decomp
Loading...
Searching...
No Matches
axfx.h
Go to the documentation of this file.
1#ifndef DOLPHIN_AXFX_AXFX_H
2#define DOLPHIN_AXFX_AXFX_H
3
4#include <platform.h>
5
6void* AXFXAllocFunction(size_t size);
7void AXFXFreeFunction(void* ptr);
8void AXFXSetHooks(void* (*alloc_hook)(size_t), void (*free_hook)(void*));
9
10#endif
void * ptr
Definition __types.h:6
void AXFXFreeFunction(void *ptr)
Definition axfx.c:15
void AXFXSetHooks(void *(*alloc_hook)(size_t), void(*free_hook)(void *))
Definition axfx.c:20
void * AXFXAllocFunction(size_t size)
Definition axfx.c:10