2023-03-10 10:32:50 +00:00
|
|
|
// This file is part of noxos and licensed under the MIT open source license
|
2023-03-08 17:25:20 +00:00
|
|
|
|
|
|
|
#ifndef NOX_STATUS_H
|
|
|
|
#define NOX_STATUS_H
|
|
|
|
|
|
|
|
#include "string.h"
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
STATUS_SUCCESS,
|
|
|
|
|
|
|
|
STATUS_PERMISSION_DENIED,
|
|
|
|
STATUS_RESOURCE_NOT_AVAILABLE
|
|
|
|
} status_E;
|
|
|
|
|
|
|
|
extern string_t g_status_code_strings[3];
|
|
|
|
|
|
|
|
#endif //NOX_STATUS_H
|