From f8066bbf5169b7d7e68771bce677355e33a595c1 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 26 Feb 2013 17:24:23 +0100 Subject: implement base service that all other services inherit from --- src/property_list_service.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/property_list_service.h') diff --git a/src/property_list_service.h b/src/property_list_service.h index 8b15c09..c18fd76 100644 --- a/src/property_list_service.h +++ b/src/property_list_service.h @@ -23,6 +23,7 @@ #define __PROPERTY_LIST_SERVICE_H #include +#include "service.h" #include "idevice.h" /* Error Codes */ @@ -35,7 +36,7 @@ #define PROPERTY_LIST_SERVICE_E_UNKNOWN_ERROR -256 struct property_list_service_client_private { - idevice_connection_t connection; + service_client_t parent; }; typedef struct property_list_service_client_private *property_list_service_client_t; -- cgit v1.1-32-gdbae