q/lib/sys/proc_windows.q
2025-02-12 00:04:30 +01:00

7 lines
No EOL
91 B
Text

extern kernel32 {
ExitProcess(code UInt)
}
exit(code Int) {
kernel32.ExitProcess(code)
}