implement toggle/number/text values
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
ea221cdf85
commit
ff9bf0c14a
14 changed files with 280 additions and 48 deletions
|
|
@ -33,28 +33,28 @@ enum IkarusErrorInfo {
|
|||
/// \brief No error occurred.
|
||||
IkarusErrorInfo_Type_None = 0x0002000000000000,
|
||||
/// \brief The user misused the API.
|
||||
/// \example Accessing a resource that does not exist.
|
||||
/// Example: Accessing a resource that does not exist.
|
||||
IkarusErrorInfo_Type_Client_Misuse = 0x0002000100000001,
|
||||
/// \brief The user provided invalid input.
|
||||
/// \example Passing null for a pointer that must not be null.
|
||||
/// Example: Passing null for a pointer that must not be null.
|
||||
IkarusErrorInfo_Type_Client_Input = 0x0002000100000002,
|
||||
/// \brief An error occurred while interacting with a dependency from ikarus.
|
||||
/// \example An error occurred in the underlying OS library.
|
||||
/// Example: An error occurred in the underlying OS library.
|
||||
IkarusErrorInfo_Type_SubSystem_Dependency = 0x0002000200000001,
|
||||
/// \brief An error occurred while interacting with the database.
|
||||
/// \example An error occurred while executing a query.
|
||||
/// Example: An error occurred while executing a query.
|
||||
IkarusErrorInfo_Type_SubSystem_Database = 0x0002000200000002,
|
||||
/// \brief An error occurred while interacting with the filesystem.
|
||||
/// \example An error occurred while reading a file.
|
||||
/// Example: An error occurred while reading a file.
|
||||
IkarusErrorInfo_Type_SubSystem_Filesystem = 0x0002000200000003,
|
||||
/// \brief A datapoint within ikarus is invalid for the current state of the system.
|
||||
/// \example The name of an object is found to be invalid UTF8.
|
||||
/// Example: The name of an object is found to be invalid UTF8.
|
||||
IkarusErrorInfo_Type_LibIkarus_InvalidState = 0x0002000300000001,
|
||||
/// \brief LibIkarus is unable to perform a certain operation that should succeed.
|
||||
/// \example Migrating a project fails
|
||||
/// Example: Migrating a project fails
|
||||
IkarusErrorInfo_Type_LibIkarus_CannotPerformOperation = 0x0002000300000002,
|
||||
/// \brief LibIkarus is unable to perform a certain operation within a given timeframe.
|
||||
/// \example A query takes longer than the timeout.
|
||||
/// Example: A query takes longer than the timeout.
|
||||
IkarusErrorInfo_Type_LibIkarus_Timeout = 0x0002000300000003,
|
||||
/// \brief The type of error is unknown.
|
||||
IkarusErrorInfo_Type_Unknown = 0xFFFFFFFF,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue