aboutsummaryrefslogtreecommitdiff
path: root/lib/System/Win32/Memory.inc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/System/Win32/Memory.inc')
-rw-r--r--lib/System/Win32/Memory.inc11
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/System/Win32/Memory.inc b/lib/System/Win32/Memory.inc
index 620801583a..5e5cf7a676 100644
--- a/lib/System/Win32/Memory.inc
+++ b/lib/System/Win32/Memory.inc
@@ -53,13 +53,20 @@ bool Memory::ReleaseRWX(MemoryBlock &M, std::string *ErrMsg) {
return false;
}
-bool Memory::setWritable (MemoryBlock &M, std::string *ErrMsg) {
+bool Memory::setWritable(MemoryBlock &M, std::string *ErrMsg) {
return true;
}
-bool Memory::setExecutable (MemoryBlock &M, std::string *ErrMsg) {
+bool Memory::setExecutable(MemoryBlock &M, std::string *ErrMsg) {
return false;
}
+bool Memory::setRangeWritable(const void *Addr, size_t Size) {
+ return true;
}
+bool Memory::setRangeExecutable(const void *Addr, size_t Size) {
+ return false;
+}
+
+}