common: add some more status codes

This commit is contained in:
2025-04-14 09:43:31 +01:00
parent e1d7bebe9f
commit ae5e438207

View File

@@ -11,6 +11,8 @@ enum ivy_status {
IVY_ERR_NO_MEMORY = -4,
IVY_ERR_NOT_SUPPORTED = -5,
IVY_ERR_INTERNAL_FAILURE = -6,
IVY_ERR_BAD_STATE = -7,
IVY_ERR_INVALID_VALUE = -8,
};
IVY_API const char *ivy_status_to_string(enum ivy_status status);