~ubuntu-branches/ubuntu/wily/libimobiledevice/wily

« back to all changes in this revision

Viewing changes to include/libimobiledevice/notification_proxy.h

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki, Matthias Niess, Timo Jyrinki
  • Date: 2014-03-14 08:44:15 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20140314084415-twglhjx6bqzmir8v
Tags: 1.1.5+git20140313.bafe6a9e-0ubuntu1
[ Matthias Niess ]
* Replace a duplicate 'backup' util man page with the one for 'crashreport'

[ Timo Jyrinki ]
* New upstream snapshot. (LP: #1207812)
* Drop patches include in the upstream snapshot:
  - debian/patches/CVE-2013-2142.patch
  - debian/patches/git_explicitly_cast_ssl_enabled.patch
* Drop the python patch, new upstream method seems to work:
  - debian/patches/09_use_python_config.patch
* Refreshed remaining patches:
  - debian/patches/01-libs.private.patch
  - debian/patches/02-fix-link-errors.patch
* Drop libimobiledevice-doc, the git does not include html documentation
* Updated libimobiledevice4.symbols 
* Add missing man page for the 'idevicename' util

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <libimobiledevice/libimobiledevice.h>
31
31
#include <libimobiledevice/lockdown.h>
32
32
 
 
33
#define NP_SERVICE_NAME "com.apple.mobile.notification_proxy"
 
34
 
33
35
/** @name Error Codes */
34
36
/*@{*/
35
37
#define NP_E_SUCCESS                0
92
94
 
93
95
/* Interface */
94
96
np_error_t np_client_new(idevice_t device, lockdownd_service_descriptor_t service, np_client_t *client);
 
97
np_error_t np_client_start_service(idevice_t device, np_client_t* client, const char* label);
95
98
np_error_t np_client_free(np_client_t client);
 
99
 
96
100
np_error_t np_post_notification(np_client_t client, const char *notification);
97
101
np_error_t np_observe_notification(np_client_t client, const char *notification);
98
102
np_error_t np_observe_notifications(np_client_t client, const char **notification_spec);