diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-12-12 20:18:05 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:33 +0100 |
commit | 0793522d287ffd8d37886d927645743d0fec77a0 (patch) | |
tree | 9261f1c8f809bf7f269d055b0d92a2fd77d86e22 /include/ModemManager-errors.h | |
parent | 667e3edfbd62d4b2f9ceb90eaaf38571441eaf36 (diff) |
errors: new TOO_MANY and NOT_FOUND core errors
Diffstat (limited to 'include/ModemManager-errors.h')
-rw-r--r-- | include/ModemManager-errors.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ModemManager-errors.h b/include/ModemManager-errors.h index 5a5b9c8a..390b4552 100644 --- a/include/ModemManager-errors.h +++ b/include/ModemManager-errors.h @@ -37,6 +37,8 @@ * @MM_CORE_ERROR_IN_PROGRESS: Operation is already in progress. * @MM_CORE_ERROR_WRONG_STATE: Operation cannot be executed in the current state. * @MM_CORE_ERROR_CONNECTED: Operation cannot be executed while being connected. + * @MM_CORE_ERROR_TOO_MANY: Too many items. + * @MM_CORE_ERROR_NOT_FOUND: Item not found. * * Common errors that may be reported by ModemManager. */ @@ -51,6 +53,8 @@ typedef enum { /*< underscore_name=mm_core_error >*/ MM_CORE_ERROR_IN_PROGRESS = 7, MM_CORE_ERROR_WRONG_STATE = 8, MM_CORE_ERROR_CONNECTED = 9, + MM_CORE_ERROR_TOO_MANY = 10, + MM_CORE_ERROR_NOT_FOUND = 11, } MMCoreError; /** |