mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
20 lines
364 B
C
20 lines
364 B
C
/****************************************************************************
|
|
* WiiMC
|
|
* Tantric 2009-2012
|
|
*
|
|
* mem2_manager.h
|
|
*
|
|
* MEM2 allocator
|
|
****************************************************************************/
|
|
|
|
#ifndef _MEM2_MANAGER_H
|
|
#define _MEM2_MANAGER_H
|
|
|
|
bool gx_init_mem2(void);
|
|
|
|
u32 gx_mem2_used(void);
|
|
|
|
u32 gx_mem2_total(void);
|
|
|
|
#endif
|