asrt
Automated System Runtime Testing library
Loading...
Searching...
No Matches
status.h
1
12#ifndef ASRT_STATUS_H
13#define ASRT_STATUS_H
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19enum asrt_status
20{
22 ASRT_VERSION_ERR = -13,
23
26 ASRT_KEY_FORBIDDEN_ERR = -12,
27
30 ASRT_KEY_REQUIRED_ERR = -11,
31
33 ASRT_CHANN_NOT_FOUND = -10,
34
38 ASRT_INTERNAL_ERR = -9,
39
42 ASRT_TIMEOUT_ERR = -8,
43
46 ASRT_BUSY_ERR = -7,
47
50 ASRT_SEND_ERR = -6,
51
55 ASRT_RECV_ERR = -5,
56
59 ASRT_SIZE_ERR = -4,
60
62 ASRT_ALLOC_ERR = -3,
63
67 ASRT_ARG_ERR = -2,
68
71 ASRT_INIT_ERR = -1,
72
74 ASRT_SUCCESS = 1,
75};
76
77#ifdef __cplusplus
78}
79#endif
80
81#endif