q/lib/core/core_windows.q

24 lines
299 B
Plaintext

cp const {
utf8 65001
}
kernel32 extern {
SetConsoleCP(cp uint)
SetConsoleOutputCP(cp uint)
ExitProcess(code uint)
}
init() {
kernel32.SetConsoleCP(cp.utf8)
kernel32.SetConsoleOutputCP(cp.utf8)
main.main()
exit()
}
exit() {
kernel32.ExitProcess(0)
}
crash() {
kernel32.ExitProcess(1)
}