diff options
-rw-r--r-- | lib/System/Win32/Memory.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/System/Win32/Memory.inc b/lib/System/Win32/Memory.inc index eed2b100e6..620801583a 100644 --- a/lib/System/Win32/Memory.inc +++ b/lib/System/Win32/Memory.inc @@ -53,5 +53,13 @@ bool Memory::ReleaseRWX(MemoryBlock &M, std::string *ErrMsg) { return false; } +bool Memory::setWritable (MemoryBlock &M, std::string *ErrMsg) { + return true; +} + +bool Memory::setExecutable (MemoryBlock &M, std::string *ErrMsg) { + return false; +} + } |