feature (status): added a few more error status codes

This commit is contained in:
antifallobst 2023-05-07 00:33:10 +02:00
parent c02fdd7249
commit 12ff4ec3dd
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,9 @@ typedef enum {
STATUS_SUCCESS,
STATUS_PERMISSION_DENIED,
STATUS_RESOURCE_NOT_AVAILABLE
STATUS_RESOURCE_NOT_AVAILABLE,
STATUS_NOT_SUPPORTED,
STATUS_GENERIC_ERROR
} status_E;
extern string_t g_status_code_strings[3];