diff options
| author | 2009-03-08 12:13:03 -0700 | |
|---|---|---|
| committer | 2009-03-08 12:13:03 -0700 | |
| commit | 774c3ed001a48a52cceb450bca292dd6112d683f (patch) | |
| tree | 98d3d01ecb8bb492d61eaab2dccb90a409bb76ba /src/NotificationProxy.h | |
| parent | 927a6d3d437ca4532f8e9e906089b3a24542ebd3 (diff) | |
| download | libimobiledevice-774c3ed001a48a52cceb450bca292dd6112d683f.tar.gz libimobiledevice-774c3ed001a48a52cceb450bca292dd6112d683f.tar.bz2 | |
Adds ability to show notification screen to the user.
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src/NotificationProxy.h')
| -rw-r--r-- | src/NotificationProxy.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/NotificationProxy.h b/src/NotificationProxy.h new file mode 100644 index 0000000..7b47346 --- /dev/null +++ b/src/NotificationProxy.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * NotificationProxy.h | ||
| 3 | * Notification Proxy header file. | ||
| 4 | * | ||
| 5 | * Copyright (c) 2009 Nikias Bassen, All Rights Reserved. | ||
| 6 | * | ||
| 7 | * This library is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU Lesser General Public | ||
| 9 | * License as published by the Free Software Foundation; either | ||
| 10 | * version 2.1 of the License, or (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This library is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * Lesser General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU Lesser General Public | ||
| 18 | * License along with this library; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 20 | */ | ||
| 21 | #include "usbmux.h" | ||
| 22 | #include "iphone.h" | ||
| 23 | |||
| 24 | #include <glib.h> | ||
| 25 | |||
| 26 | struct iphone_np_client_int { | ||
| 27 | iphone_umux_client_t connection; | ||
| 28 | GMutex *mutex; | ||
| 29 | }; | ||
| 30 | |||
