mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
15 lines
233 B
Odin
15 lines
233 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 "";
|
|
}
|