aboutsummaryrefslogtreecommitdiff
path: root/core/nbio/errors_others.odin
blob: f27c911784ca3a758586fcf7248872630ea57d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#+build !darwin
#+build !freebsd
#+build !openbsd
#+build !netbsd
#+build !linux
#+build !windows
#+private
package nbio

PLATFORM_ERR_UNSUPPORTED       :: 1
PLATFORM_ERR_ALLOCATION_FAILED :: 2
PLATFORM_ERR_TIMEOUT           :: 3
PLATFORM_ERR_INVALID_ARGUMENT  :: 4
PLATFORM_ERR_OVERFLOW          :: 5
PLATFORM_ERR_NOT_FOUND         :: 6
PLATFORM_ERR_EXISTS            :: 7
PLATFORM_ERR_PERMISSION_DENIED :: 8
PLATFORM_ERR_EOF               :: 9

_Platform_Error :: enum i32 {}