Various renaming and refactoring

This commit is contained in:
2022-08-19 22:34:45 -05:00
parent 0337fca749
commit c36f65ce97
11 changed files with 227 additions and 156 deletions

View File

@@ -1,14 +1,15 @@
#pragma once
enum status_t
enum error_t
{
S_OK = 0,
S_NULL_POINTER,
S_OUT_OF_BOUNDS,
S_INVALID_ARGUMENT,
S_OUT_OF_MEMORY,
S_DOESNT_EXIST,
S_EXISTS,
S_BAD_SYSCALL,
S_BUSY
ENONE = 0,
ENULLPTR,
EOUTOFBOUNDS,
EINVALIDARG,
ENOMEM,
EDOESNTEXIST,
EEXISTS,
ENOSYSCALL,
EPERM,
EBUSY
};