not64/main/wii_vm.h
Extrems b6084c1d31
2015-02-04 03:02:51 -05:00

18 lines
No EOL
385 B
C

/* Copyright 2013 tueidj All Rights Reserved
* This code may not be used in any project
* without explicit permission from the author.
*/
#ifdef __cplusplus
extern "C" {
#endif
void* VM_Init(size_t VMSize, size_t MEMSize);
void VM_Deinit(void);
// clears entire VM range to zero, unlocks any locked pages
void VM_InvalidateAll(void);
#ifdef __cplusplus
}
#endif