summaryrefslogtreecommitdiffstats
path: root/include/libiphone
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-01-05 03:38:26 +0100
committerGravatar Martin Szulecki2010-01-05 03:38:26 +0100
commit5e45779a8d22068f54e0dbdc42995be27b858e18 (patch)
treef27a4efdc316a35f70e2aaf5a5f231b89dfbb298 /include/libiphone
parent7b153ef8ca43c4b437cb9e4e6f2777bdb7047677 (diff)
parentdaee8be013dae3821463fd85f4076ca2ab3adce6 (diff)
downloadlibimobiledevice-5e45779a8d22068f54e0dbdc42995be27b858e18.tar.gz
libimobiledevice-5e45779a8d22068f54e0dbdc42995be27b858e18.tar.bz2
Merge branch 'master' of git://github.com/MattColyer/libiphone into martin
Diffstat (limited to 'include/libiphone')
-rw-r--r--include/libiphone/installation_proxy.h76
-rw-r--r--include/libiphone/libiphone.h1
-rw-r--r--include/libiphone/notification_proxy.h1
-rw-r--r--include/libiphone/sbservices.h56
4 files changed, 134 insertions, 0 deletions
diff --git a/include/libiphone/installation_proxy.h b/include/libiphone/installation_proxy.h
new file mode 100644
index 0000000..f432e8a
--- /dev/null
+++ b/include/libiphone/installation_proxy.h
@@ -0,0 +1,76 @@
1/**
2 * @file libiphone/installation_proxy.h
3 * @brief Implementation to talk to the installation proxy on a device
4 * \internal
5 *
6 * Copyright (c) 2009 Nikias Bassen All Rights Reserved.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef INSTALLATION_PROXY_H
24#define INSTALLATION_PROXY_H
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#include <libiphone/libiphone.h>
31
32/* Error Codes */
33#define INSTPROXY_E_SUCCESS 0
34#define INSTPROXY_E_INVALID_ARG -1
35#define INSTPROXY_E_PLIST_ERROR -2
36#define INSTPROXY_E_CONN_FAILED -3
37#define INSTPROXY_E_OP_IN_PROGRESS -4
38#define INSTPROXY_E_OP_FAILED -5
39
40#define INSTPROXY_E_UNKNOWN_ERROR -256
41
42typedef int16_t instproxy_error_t;
43
44typedef enum {
45 INSTPROXY_APPTYPE_ALL = 0,
46 INSTPROXY_APPTYPE_SYSTEM = 1,
47 INSTPROXY_APPTYPE_USER = 2
48} instproxy_apptype_t;
49
50#define INSTPROXY_ARCHIVE_APP_ONLY (1 << 0)
51#define INSTPROXY_ARCHIVE_SKIP_UNINSTALL (1 << 1)
52
53struct instproxy_client_int;
54typedef struct instproxy_client_int *instproxy_client_t;
55
56typedef void (*instproxy_status_cb_t) (const char *operation, plist_t status);
57
58/* Interface */
59instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, instproxy_client_t *client);
60instproxy_error_t instproxy_client_free(instproxy_client_t client);
61
62instproxy_error_t instproxy_browse(instproxy_client_t client, instproxy_apptype_t apptype, plist_t *result);
63instproxy_error_t instproxy_install(instproxy_client_t client, const char *pkg_path, plist_t sinf, plist_t metadata, instproxy_status_cb_t status_cb);
64instproxy_error_t instproxy_upgrade(instproxy_client_t client, const char *pkg_path, plist_t sinf, plist_t metadata, instproxy_status_cb_t status_cb);
65instproxy_error_t instproxy_uninstall(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
66
67instproxy_error_t instproxy_lookup_archives(instproxy_client_t client, plist_t *result);
68instproxy_error_t instproxy_archive(instproxy_client_t client, const char *appid, uint32_t options, instproxy_status_cb_t status_cb);
69instproxy_error_t instproxy_restore(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
70instproxy_error_t instproxy_remove_archive(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif
diff --git a/include/libiphone/libiphone.h b/include/libiphone/libiphone.h
index 6b95edc..923bc58 100644
--- a/include/libiphone/libiphone.h
+++ b/include/libiphone/libiphone.h
@@ -53,6 +53,7 @@ typedef struct iphone_connection_int *iphone_connection_t;
53#define DBGMASK_NONE 0x0000 53#define DBGMASK_NONE 0x0000
54#define DBGMASK_LOCKDOWND (1 << 1) 54#define DBGMASK_LOCKDOWND (1 << 1)
55#define DBGMASK_MOBILESYNC (1 << 2) 55#define DBGMASK_MOBILESYNC (1 << 2)
56#define DBGMASK_INSTPROXY (1 << 3)
56 57
57/* generic */ 58/* generic */
58void iphone_set_debug_mask(uint16_t mask); 59void iphone_set_debug_mask(uint16_t mask);
diff --git a/include/libiphone/notification_proxy.h b/include/libiphone/notification_proxy.h
index 66b7a80..96af5fd 100644
--- a/include/libiphone/notification_proxy.h
+++ b/include/libiphone/notification_proxy.h
@@ -33,6 +33,7 @@ extern "C" {
33#define NP_E_SUCCESS 0 33#define NP_E_SUCCESS 0
34#define NP_E_INVALID_ARG -1 34#define NP_E_INVALID_ARG -1
35#define NP_E_PLIST_ERROR -2 35#define NP_E_PLIST_ERROR -2
36#define NP_E_CONN_FAILED -3
36 37
37#define NP_E_UNKNOWN_ERROR -256 38#define NP_E_UNKNOWN_ERROR -256
38 39
diff --git a/include/libiphone/sbservices.h b/include/libiphone/sbservices.h
new file mode 100644
index 0000000..6ea8189
--- /dev/null
+++ b/include/libiphone/sbservices.h
@@ -0,0 +1,56 @@
1/**
2 * @file libiphone/sbservices.h
3 * @brief Implementation to talk to com.apple.springboardservices on a device
4 * \internal
5 *
6 * Copyright (c) 2009 Nikias Bassen All Rights Reserved.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef SB_SERVICES_H
24#define SB_SERVICES_H
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#include <libiphone/libiphone.h>
31
32/* Error Codes */
33#define SBSERVICES_E_SUCCESS 0
34#define SBSERVICES_E_INVALID_ARG -1
35#define SBSERVICES_E_PLIST_ERROR -2
36#define SBSERVICES_E_CONN_FAILED -3
37
38#define SBSERVICES_E_UNKNOWN_ERROR -256
39
40typedef int16_t sbservices_error_t;
41
42struct sbservices_client_int;
43typedef struct sbservices_client_int *sbservices_client_t;
44
45/* Interface */
46sbservices_error_t sbservices_client_new(iphone_device_t device, int dst_port, sbservices_client_t *client);
47sbservices_error_t sbservices_client_free(sbservices_client_t client);
48sbservices_error_t sbservices_get_icon_state(sbservices_client_t client, plist_t *state);
49sbservices_error_t sbservices_set_icon_state(sbservices_client_t client, plist_t newstate);
50sbservices_error_t sbservices_get_icon_pngdata(sbservices_client_t client, const char *bundleId, char **pngdata, uint64_t *pngsize);
51
52#ifdef __cplusplus
53}
54#endif
55
56#endif