mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 01:42:22 -07:00
15 lines
230 B
Odin
15 lines
230 B
Odin
//+private
|
|
package os2
|
|
|
|
import win32 "core:sys/windows"
|
|
|
|
_error_string :: proc(errno: i32) -> string {
|
|
e := win32.DWORD(errno)
|
|
if e == 0 {
|
|
return ""
|
|
}
|
|
// TODO(bill): _error_string for windows
|
|
// FormatMessageW
|
|
return ""
|
|
}
|