Reorganized sys functions
This commit is contained in:
7
lib/sys/mem_windows.q
Normal file
7
lib/sys/mem_windows.q
Normal file
@ -0,0 +1,7 @@
|
||||
mmap(address Int, length Int, protection Int, flags Int) -> Pointer {
|
||||
return kernel32.VirtualAlloc(address, length, flags, protection)
|
||||
}
|
||||
|
||||
munmap(address Pointer, length Int) -> Int {
|
||||
return kernel32.VirtualFree(address, length, 0x4000)
|
||||
}
|
Reference in New Issue
Block a user