Added more status codes

This commit is contained in:
2021-04-19 06:56:12 -05:00
parent 7300b9ecd6
commit c5ca5e82a7

View File

@@ -3,8 +3,11 @@
enum status_t enum status_t
{ {
S_OK = 0, S_OK = 0,
S_BAD_SYSCALL, S_NULL_POINTER,
S_OUT_OF_MEMORY,
S_OUT_OF_BOUNDS, S_OUT_OF_BOUNDS,
S_NULL_POINTER S_INVALID_ARGUMENT,
S_OUT_OF_MEMORY,
S_DOESNT_EXIST,
S_EXISTS,
S_BAD_SYSCALL
}; };