summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cython/installation_proxy.pxi2
-rw-r--r--cython/notification_proxy.pxi2
-rw-r--r--cython/sbservices.pxi2
-rw-r--r--cython/screenshotr.pxi2
4 files changed, 4 insertions, 4 deletions
diff --git a/cython/installation_proxy.pxi b/cython/installation_proxy.pxi
index f584cbd..cf6662f 100644
--- a/cython/installation_proxy.pxi
+++ b/cython/installation_proxy.pxi
@@ -42,7 +42,7 @@ cdef class InstallationProxyError(BaseError):
42 } 42 }
43 BaseError.__init__(self, *args, **kwargs) 43 BaseError.__init__(self, *args, **kwargs)
44 44
45cdef class InstallationProxy(Base): 45cdef class InstallationProxyClient(PropertyListService):
46 __service_name__ = "com.apple.mobile.installation_proxy" 46 __service_name__ = "com.apple.mobile.installation_proxy"
47 cdef instproxy_client_t _c_client 47 cdef instproxy_client_t _c_client
48 48
diff --git a/cython/notification_proxy.pxi b/cython/notification_proxy.pxi
index cc25f2d..7b2911b 100644
--- a/cython/notification_proxy.pxi
+++ b/cython/notification_proxy.pxi
@@ -30,7 +30,7 @@ cdef class NotificationProxyError(BaseError):
30 } 30 }
31 BaseError.__init__(self, *args, **kwargs) 31 BaseError.__init__(self, *args, **kwargs)
32 32
33cdef class NotificationProxy(Base): 33cdef class NotificationProxyClient(PropertyListService):
34 __service_name__ = "com.apple.mobile.notification_proxy" 34 __service_name__ = "com.apple.mobile.notification_proxy"
35 cdef np_client_t _c_client 35 cdef np_client_t _c_client
36 36
diff --git a/cython/sbservices.pxi b/cython/sbservices.pxi
index 13a49aa..55c94a5 100644
--- a/cython/sbservices.pxi
+++ b/cython/sbservices.pxi
@@ -25,7 +25,7 @@ cdef class SpringboardServicesError(BaseError):
25 } 25 }
26 BaseError.__init__(self, *args, **kwargs) 26 BaseError.__init__(self, *args, **kwargs)
27 27
28cdef class SpringboardServicesClient(Base): 28cdef class SpringboardServicesClient(PropertyListService):
29 __service_name__ = "com.apple.springboardservices" 29 __service_name__ = "com.apple.springboardservices"
30 cdef sbservices_client_t _c_client 30 cdef sbservices_client_t _c_client
31 31
diff --git a/cython/screenshotr.pxi b/cython/screenshotr.pxi
index d3a896f..d7dfc57 100644
--- a/cython/screenshotr.pxi
+++ b/cython/screenshotr.pxi
@@ -27,7 +27,7 @@ cdef class ScreenshotrError(BaseError):
27 } 27 }
28 BaseError.__init__(self, *args, **kwargs) 28 BaseError.__init__(self, *args, **kwargs)
29 29
30cdef class ScreenshotrClient(Base): 30cdef class ScreenshotrClient(DeviceLinkService):
31 __service_name__ = "com.apple.mobile.screenshotr" 31 __service_name__ = "com.apple.mobile.screenshotr"
32 cdef screenshotr_client_t _c_client 32 cdef screenshotr_client_t _c_client
33 33