14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
write(_ Int, _ Pointer, _ Int) -> Int {
|
|
// WriteFile(fd, buffer, length, out numberOfBytesWritten, out overlapped)
|
|
return 0
|
|
}
|
|
|
|
mmap(_ Int, _ Int, _ Int, _ Int) -> Pointer {
|
|
// VirtualAlloc(address, length, flags, protection)
|
|
return 0
|
|
}
|
|
|
|
exit(_ Int) {
|
|
// ExitProcess(code)
|
|
return
|
|
} |