mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 01:45:05 +01:00
7d8f115185
done automatically by executing regex replace `([^:0-9a-zA-Z_])size_t([^0-9a-zA-Z_])` -> `$1std::size_t$2`
22 lines
715 B
C++
22 lines
715 B
C++
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
void* AllocateExecutableMemory(std::size_t size, bool low = true);
|
|
void* AllocateMemoryPages(std::size_t size);
|
|
void FreeMemoryPages(void* ptr, std::size_t size);
|
|
void* AllocateAlignedMemory(std::size_t size, std::size_t alignment);
|
|
void FreeAlignedMemory(void* ptr);
|
|
void WriteProtectMemory(void* ptr, std::size_t size, bool executable = false);
|
|
void UnWriteProtectMemory(void* ptr, std::size_t size, bool allowExecute = false);
|
|
std::string MemUsage();
|
|
|
|
inline int GetPageSize() {
|
|
return 4096;
|
|
}
|