summaryrefslogtreecommitdiffstats
path: root/cython/mobilesync.pxi
diff options
context:
space:
mode:
Diffstat (limited to 'cython/mobilesync.pxi')
-rw-r--r--cython/mobilesync.pxi10
1 files changed, 5 insertions, 5 deletions
diff --git a/cython/mobilesync.pxi b/cython/mobilesync.pxi
index 87539d2..d5dacb1 100644
--- a/cython/mobilesync.pxi
+++ b/cython/mobilesync.pxi
@@ -1,7 +1,7 @@
1cdef extern from "libimobiledevice/mobilesync.h": 1cdef extern from "libimobiledevice/mobilesync.h":
2 cdef struct mobilesync_client_int: 2 cdef struct mobilesync_client_private:
3 pass 3 pass
4 ctypedef mobilesync_client_int *mobilesync_client_t 4 ctypedef mobilesync_client_private *mobilesync_client_t
5 5
6 ctypedef enum mobilesync_error_t: 6 ctypedef enum mobilesync_error_t:
7 MOBILESYNC_E_SUCCESS = 0 7 MOBILESYNC_E_SUCCESS = 0
@@ -21,9 +21,9 @@ cdef class MobileSyncError(BaseError):
21 self._lookup_table = { 21 self._lookup_table = {
22 MOBILESYNC_E_SUCCESS: "Success", 22 MOBILESYNC_E_SUCCESS: "Success",
23 MOBILESYNC_E_INVALID_ARG: "Invalid argument", 23 MOBILESYNC_E_INVALID_ARG: "Invalid argument",
24 MOBILESYNC_E_PLIST_ERROR: "PList Error", 24 MOBILESYNC_E_PLIST_ERROR: "Property list error",
25 MOBILESYNC_E_MUX_ERROR: "MUX Error", 25 MOBILESYNC_E_MUX_ERROR: "MUX error",
26 MOBILESYNC_E_BAD_VERSION: "Bad Version", 26 MOBILESYNC_E_BAD_VERSION: "Bad version",
27 MOBILESYNC_E_UNKNOWN_ERROR: "Unknown error" 27 MOBILESYNC_E_UNKNOWN_ERROR: "Unknown error"
28 } 28 }
29 BaseError.__init__(self, *args, **kwargs) 29 BaseError.__init__(self, *args, **kwargs)