mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
16b2358bf6
DOL/ELF binary output filenames changed - split up code
18 lines
350 B
C
18 lines
350 B
C
/****************************************************************************
|
|
* WiiMC
|
|
* Tantric 2009-2012
|
|
*
|
|
* mem2_manager.h
|
|
*
|
|
* MEM2 allocator
|
|
****************************************************************************/
|
|
|
|
#ifndef _MEM2_MANAGER_H
|
|
#define _MEM2_MANAGER_H
|
|
|
|
bool gx_init_mem2();
|
|
u32 gx_mem2_used();
|
|
u32 gx_mem2_total();
|
|
|
|
#endif
|