aboutsummaryrefslogtreecommitdiff
path: root/src/dolphin/MemoryUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphin/MemoryUtil.h')
-rw-r--r--src/dolphin/MemoryUtil.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/dolphin/MemoryUtil.h b/src/dolphin/MemoryUtil.h
deleted file mode 100644
index 607b7a8..0000000
--- a/src/dolphin/MemoryUtil.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2008 Dolphin Emulator Project
-// Licensed under GPLv2+
-// Refer to the license_dolphin.txt file included.
-
-#pragma once
-
-#include <cstddef>
-#include <string>
-
-namespace Common
-{
-void* AllocateExecutableMemory(size_t size);
-void* AllocateMemoryPages(size_t size);
-void FreeMemoryPages(void* ptr, size_t size);
-void* AllocateAlignedMemory(size_t size, size_t alignment);
-void FreeAlignedMemory(void* ptr);
-void ReadProtectMemory(void* ptr, size_t size);
-void WriteProtectMemory(void* ptr, size_t size, bool executable = false);
-void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false);
-size_t MemPhysical();
-
-} // namespace Common