2024-08-13 17:34:54 +00:00
|
|
|
write(_ Int, _ Pointer, _ Int) -> Int {
|
2024-08-16 10:49:17 +00:00
|
|
|
// WriteFile(fd, buffer, length, out numberOfBytesWritten, out overlapped)
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
mmap(_ Int, _ Int, _ Int, _ Int) -> Pointer {
|
|
|
|
// VirtualAlloc(address, length, flags, protection)
|
2024-08-13 17:34:54 +00:00
|
|
|
return 0
|
2024-08-15 11:53:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exit(_ Int) {
|
2024-08-16 10:49:17 +00:00
|
|
|
// ExitProcess(code)
|
2024-08-15 11:53:00 +00:00
|
|
|
return
|
2024-08-13 17:34:54 +00:00
|
|
|
}
|