fceugx/source/mem2.h

24 lines
448 B
C
Raw Normal View History

/****************************************************************************
* FCE Ultra
* Nintendo Wii/Gamecube Port
*
2021-01-06 21:13:49 +01:00
* Tantric 2010-2021
*
* mem2.h
*
* MEM2 memory allocator
***************************************************************************/
#ifdef HW_RVL
#ifndef _MEM2MANAGER_H_
#define _MEM2MANAGER_H_
u32 InitMem2Manager ();
void* mem2_malloc(u32 size);
bool mem2_free(void *ptr);
#endif
#endif