From bdbae88e87942b7eef5f2883bbea95a601383026 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Wed, 12 Feb 2025 22:10:57 +0000 Subject: [PATCH] core: add more status codes --- core/include/blue/core/status.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/include/blue/core/status.h b/core/include/blue/core/status.h index 9fd2b87..1d1e079 100644 --- a/core/include/blue/core/status.h +++ b/core/include/blue/core/status.h @@ -18,6 +18,9 @@ typedef enum b_status { B_ERR_NO_DATA, B_ERR_UNKNOWN_FUNCTION, B_ERR_BAD_FORMAT, + B_ERR_IO_FAILURE, + B_ERR_IS_DIRECTORY, + B_ERR_NOT_DIRECTORY, } b_status; BLUE_API const char *b_status_to_string(b_status status);