From 12ff4ec3dda64d5b268f69b148b853750c93dd6a Mon Sep 17 00:00:00 2001 From: antifallobst Date: Sun, 7 May 2023 00:33:10 +0200 Subject: [PATCH] feature (status): added a few more error status codes --- inc/utils/status.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc/utils/status.h b/inc/utils/status.h index 8107254..46d25f3 100644 --- a/inc/utils/status.h +++ b/inc/utils/status.h @@ -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];