summaryrefslogtreecommitdiffstats
path: root/include/libiphone/notification_proxy.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2010-01-28 22:18:41 +0100
committerGravatar Martin Szulecki2010-01-29 02:16:00 +0100
commit96101a1231a4ddfeb40fd738a24e108a3a904048 (patch)
tree65a8f54354d9acbbba93dac2c8602d07e469482c /include/libiphone/notification_proxy.h
parent45b88ae3956de089fdc35605910f1359a1d3961c (diff)
downloadlibimobiledevice-96101a1231a4ddfeb40fd738a24e108a3a904048.tar.gz
libimobiledevice-96101a1231a4ddfeb40fd738a24e108a3a904048.tar.bz2
Global renames due to project rename to libimobiledevice
Diffstat (limited to 'include/libiphone/notification_proxy.h')
-rw-r--r--include/libiphone/notification_proxy.h88
1 files changed, 0 insertions, 88 deletions
diff --git a/include/libiphone/notification_proxy.h b/include/libiphone/notification_proxy.h
deleted file mode 100644
index 962dd9b..0000000
--- a/include/libiphone/notification_proxy.h
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
- * @file libiphone/notification_proxy.h
- * @brief Implementation to talk to the notification proxy on a device
- * \internal
- *
- * Copyright (c) 2009 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 NOTIFICATION_PROXY_H
-#define NOTIFICATION_PROXY_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <libiphone/libiphone.h>
-
-/* Error Codes */
-#define NP_E_SUCCESS 0
-#define NP_E_INVALID_ARG -1
-#define NP_E_PLIST_ERROR -2
-#define NP_E_CONN_FAILED -3
-
-#define NP_E_UNKNOWN_ERROR -256
-
-typedef int16_t np_error_t;
-
-/* Notification IDs for use with post_notification (client --> device) */
-#define NP_SYNC_WILL_START "com.apple.itunes-mobdev.syncWillStart"
-#define NP_SYNC_DID_START "com.apple.itunes-mobdev.syncDidStart"
-#define NP_SYNC_DID_FINISH "com.apple.itunes-mobdev.syncDidFinish"
-#define NP_SYNC_LOCK_REQUEST "com.apple.itunes-mobdev.syncLockRequest"
-
-/* Notification IDs for use with observe_notification (device --> client) */
-#define NP_SYNC_CANCEL_REQUEST "com.apple.itunes-client.syncCancelRequest"
-#define NP_SYNC_SUSPEND_REQUEST "com.apple.itunes-client.syncSuspendRequest"
-#define NP_SYNC_RESUME_REQUEST "com.apple.itunes-client.syncResumeRequest"
-#define NP_PHONE_NUMBER_CHANGED "com.apple.mobile.lockdown.phone_number_changed"
-#define NP_DEVICE_NAME_CHANGED "com.apple.mobile.lockdown.device_name_changed"
-#define NP_TIMEZONE_CHANGED "com.apple.mobile.lockdown.timezone_changed"
-#define NP_TRUSTED_HOST_ATTACHED "com.apple.mobile.lockdown.trusted_host_attached"
-#define NP_HOST_DETACHED "com.apple.mobile.lockdown.host_detached"
-#define NP_HOST_ATTACHED "com.apple.mobile.lockdown.host_attached"
-#define NP_REGISTRATION_FAILED "com.apple.mobile.lockdown.registration_failed"
-#define NP_ACTIVATION_STATE "com.apple.mobile.lockdown.activation_state"
-#define NP_BRICK_STATE "com.apple.mobile.lockdown.brick_state"
-#define NP_DS_DOMAIN_CHANGED "com.apple.mobile.data_sync.domain_changed"
-#define NP_BACKUP_DOMAIN_CHANGED "com.apple.mobile.backup.domain_changed"
-#define NP_APP_INSTALLED "com.apple.mobile.application_installed"
-#define NP_APP_UNINSTALLED "com.apple.mobile.application_uninstalled"
-#define NP_DEV_IMAGE_MOUNTED "com.apple.mobile.developer_image_mounted"
-#define NP_ATTEMPTACTIVATION "com.apple.springboard.attemptactivation"
-#define NP_ITDBPREP_DID_END "com.apple.itdbprep.notification.didEnd"
-#define NP_LANGUAGE_CHANGED "com.apple.language.changed"
-#define NP_ADDRESS_BOOK_PREF_CHANGED "com.apple.AddressBook.PreferenceChanged"
-
-struct np_client_int;
-typedef struct np_client_int *np_client_t;
-
-typedef void (*np_notify_cb_t) (const char *notification);
-
-/* Interface */
-np_error_t np_client_new(iphone_device_t device, uint16_t port, np_client_t *client);
-np_error_t np_client_free(np_client_t client);
-np_error_t np_post_notification(np_client_t client, const char *notification);
-np_error_t np_observe_notification(np_client_t client, const char *notification);
-np_error_t np_observe_notifications(np_client_t client, const char **notification_spec);
-np_error_t np_set_notify_callback(np_client_t client, np_notify_cb_t notify_cb);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif