diff options
author | Bryan Forbes | 2010-04-01 01:09:52 -0500 |
---|---|---|
committer | Martin Szulecki | 2012-03-20 23:25:55 +0100 |
commit | acac4f819ccafa6f6bb945626f2e21ec2b75074b (patch) | |
tree | fc6881c387ee1e4527ed2b3ca73d1059bc8fc4f2 /cython/imobiledevice.pxd | |
parent | af06ff22149191c056804e7fec9c1a6880a06872 (diff) | |
download | libimobiledevice-acac4f819ccafa6f6bb945626f2e21ec2b75074b.tar.gz libimobiledevice-acac4f819ccafa6f6bb945626f2e21ec2b75074b.tar.bz2 |
Cleaned up Makefile.am.
Added the cython m4 files.
Cleaned up afc.pxi.
Make sure the event callback and installation proxy callback aquire the GIL.
Implemented some cleanup before the error handlers raise.
Diffstat (limited to 'cython/imobiledevice.pxd')
-rw-r--r-- | cython/imobiledevice.pxd | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/cython/imobiledevice.pxd b/cython/imobiledevice.pxd index 8efd669..6bf75af 100644 --- a/cython/imobiledevice.pxd +++ b/cython/imobiledevice.pxd @@ -54,10 +54,5 @@ cdef extern from "libimobiledevice/lockdown.h": cdef class LockdownClient(Base): cdef lockdownd_client_t _c_client - cpdef int start_service(self, service) + cpdef int start_service(self, bytes service) cpdef goodbye(self) - -cpdef set_debug_level(int level) -cpdef event_subscribe(object callback) -cpdef event_unsubscribe() -cpdef get_device_list() |