MemoryUtil: Remove unimplemented/unused functions

GuardMemoryMake/GuardMemoryUnmake are unimplemented prototypes.
GetPageSize is an unused function.
This commit is contained in:
Lioncash 2016-08-07 13:04:02 -04:00
parent e01c143379
commit fbc0aaf796
1 changed files with 0 additions and 8 deletions

View File

@ -21,12 +21,4 @@ void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false);
std::string MemUsage();
size_t MemPhysical();
void GuardMemoryMake(void* ptr, size_t size);
void GuardMemoryUnmake(void* ptr, size_t size);
inline int GetPageSize()
{
return 4096;
}
} // namespace Common