snes9xgx/source/vmalloc.h
emu_kidid 2c224b8db8 - Fix LTO flag (actually use one :P)
- Virtual memory for GameCube, prevent out of memory crashes
2018-06-09 08:59:52 +09:30

22 lines
412 B
C

/****************************************************************************
* Snes9x Nintendo Wii/Gamecube Port
*
* emu_kidid 2015-2018
*
* vmalloc.h
*
* GC VM memory allocator
***************************************************************************/
#ifdef USE_VM
#ifndef _VMMANAGER_H_
#define _VMMANAGER_H_
void* vm_malloc(u32 size);
bool vm_free(void *ptr);
int vm_size_free();
#endif
#endif