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,
|
2023-05-06 22:33:10 +00:00
|
|
|
STATUS_RESOURCE_NOT_AVAILABLE,
|
|
|
|
STATUS_NOT_SUPPORTED,
|
|
|
|
STATUS_GENERIC_ERROR
|
2023-03-08 17:25:20 +00:00
|
|
|
} status_E;
|
|
|
|
|
|
|
|
extern string_t g_status_code_strings[3];
|
|
|
|
|
|
|
|
#endif //NOX_STATUS_H
|