summaryrefslogtreecommitdiffstats
path: root/src/companion_proxy.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2020-05-18 04:31:44 +0200
committerGravatar Nikias Bassen2020-05-18 04:31:44 +0200
commit0268777212847afd7734cb280115aea70dc81c92 (patch)
treeb5847442cf82d9ef2923fb791b8e5e58887df8b9 /src/companion_proxy.h
parent2c83cae88c50217f0fbbff5c3d2eab5f252f164e (diff)
downloadlibimobiledevice-0268777212847afd7734cb280115aea70dc81c92.tar.gz
libimobiledevice-0268777212847afd7734cb280115aea70dc81c92.tar.bz2
Add support for com.apple.companion_proxy
Diffstat (limited to 'src/companion_proxy.h')
-rw-r--r--src/companion_proxy.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/companion_proxy.h b/src/companion_proxy.h
new file mode 100644
index 0000000..1b520d4
--- /dev/null
+++ b/src/companion_proxy.h
@@ -0,0 +1,34 @@
+/*
+ * compproxy.h
+ * com.apple.companion_proxy service header file.
+ *
+ * Copyright (c) 2019-2020 Nikias Bassen, All Rights Reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __COMPANION_PROXY_H
+#define __COMPANION_PROXY_H
+
+#include "libimobiledevice/companion_proxy.h"
+#include "property_list_service.h"
+#include "common/thread.h"
+
+struct compproxy_client_private {
+ property_list_service_client_t parent;
+ THREAD_T event_thread;
+};
+
+#endif