diff options
| author | 2010-01-29 02:17:40 +0100 | |
|---|---|---|
| committer | 2010-01-29 02:17:40 +0100 | |
| commit | 20671cb0ad7ba9c1f1f70d5fbdb271e4f30526fc (patch) | |
| tree | b22017e833e5c74d2655c538055ccb5f3536c443 /include/libimobiledevice | |
| parent | 96101a1231a4ddfeb40fd738a24e108a3a904048 (diff) | |
| download | libimobiledevice-20671cb0ad7ba9c1f1f70d5fbdb271e4f30526fc.tar.gz libimobiledevice-20671cb0ad7ba9c1f1f70d5fbdb271e4f30526fc.tar.bz2 | |
Add LOCKDOWN_E_INVALID_ACTIVATION_RECORD if activation errors out
Diffstat (limited to 'include/libimobiledevice')
| -rw-r--r-- | include/libimobiledevice/lockdown.h | 39 | 
1 files changed, 20 insertions, 19 deletions
| diff --git a/include/libimobiledevice/lockdown.h b/include/libimobiledevice/lockdown.h index 49c708d..bfdffad 100644 --- a/include/libimobiledevice/lockdown.h +++ b/include/libimobiledevice/lockdown.h @@ -31,26 +31,27 @@ extern "C" {  #include <libimobiledevice/libimobiledevice.h>  /* Error Codes */ -#define LOCKDOWN_E_SUCCESS                    0 -#define LOCKDOWN_E_INVALID_ARG               -1 -#define LOCKDOWN_E_INVALID_CONF              -2 -#define LOCKDOWN_E_PLIST_ERROR               -3 -#define LOCKDOWN_E_PAIRING_FAILED            -4 -#define LOCKDOWN_E_SSL_ERROR                 -5 -#define LOCKDOWN_E_DICT_ERROR                -6 -#define LOCKDOWN_E_START_SERVICE_FAILED      -7 -#define LOCKDOWN_E_NOT_ENOUGH_DATA           -8 -#define LOCKDOWN_E_SET_VALUE_PROHIBITED      -9 -#define LOCKDOWN_E_GET_VALUE_PROHIBITED     -10 -#define LOCKDOWN_E_REMOVE_VALUE_PROHIBITED  -11 -#define LOCKDOWN_E_MUX_ERROR                -12 -#define LOCKDOWN_E_ACTIVATION_FAILED        -13 -#define LOCKDOWN_E_PASSWORD_PROTECTED       -14 -#define LOCKDOWN_E_NO_RUNNING_SESSION       -15 -#define LOCKDOWN_E_INVALID_HOST_ID          -16 -#define LOCKDOWN_E_INVALID_SERVICE          -17 +#define LOCKDOWN_E_SUCCESS                     0 +#define LOCKDOWN_E_INVALID_ARG                -1 +#define LOCKDOWN_E_INVALID_CONF               -2 +#define LOCKDOWN_E_PLIST_ERROR                -3 +#define LOCKDOWN_E_PAIRING_FAILED             -4 +#define LOCKDOWN_E_SSL_ERROR                  -5 +#define LOCKDOWN_E_DICT_ERROR                 -6 +#define LOCKDOWN_E_START_SERVICE_FAILED       -7 +#define LOCKDOWN_E_NOT_ENOUGH_DATA            -8 +#define LOCKDOWN_E_SET_VALUE_PROHIBITED       -9 +#define LOCKDOWN_E_GET_VALUE_PROHIBITED      -10 +#define LOCKDOWN_E_REMOVE_VALUE_PROHIBITED   -11 +#define LOCKDOWN_E_MUX_ERROR                 -12 +#define LOCKDOWN_E_ACTIVATION_FAILED         -13 +#define LOCKDOWN_E_PASSWORD_PROTECTED        -14 +#define LOCKDOWN_E_NO_RUNNING_SESSION        -15 +#define LOCKDOWN_E_INVALID_HOST_ID           -16 +#define LOCKDOWN_E_INVALID_SERVICE           -17 +#define LOCKDOWN_E_INVALID_ACTIVATION_RECORD -18 -#define LOCKDOWN_E_UNKNOWN_ERROR           -256 +#define LOCKDOWN_E_UNKNOWN_ERROR            -256  typedef int16_t lockdownd_error_t; | 
