Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 2.32 KB

usb_moded-dbus-private.h

File metadata and controls

62 lines (46 loc) · 2.32 KB
 
Mar 22, 2011
Mar 22, 2011
1
2
/*
Copyright (C) 2010 Nokia Corporation. All rights reserved.
Nov 7, 2016
Nov 7, 2016
3
Copyright (C) 2013-2016 Jolla Ltd.
Mar 22, 2011
Mar 22, 2011
4
5
Author: Philippe De Swert <philippe.de-swert@nokia.com>
Nov 7, 2016
Nov 7, 2016
6
7
8
9
Author: Philippe De Swert <philippe.deswert@jollamobile.com>
Author: Vesa Halttunen <vesa.halttunen@jollamobile.com>
Author: Martin Jones <martin.jones@jollamobile.com>
Author: Simo Piiroinen <simo.piiroinen@jollamobile.com>
Mar 22, 2011
Mar 22, 2011
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This program is free software; you can redistribute it and/or
modify it under the terms of the Lesser GNU General Public License
version 2 as published by the Free Software Foundation.
This program 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
General Public License for more details.
You should have received a copy of the Lesser GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
Nov 7, 2016
Nov 7, 2016
26
27
28
29
30
31
/** Logical name for org.freedesktop.DBus.GetNameOwner method */
#define DBUS_GET_NAME_OWNER_REQ "GetNameOwner"
/** Logical name for org.freedesktop.DBus.NameOwnerChanged signal */
#define DBUS_NAME_OWNER_CHANGED_SIG "NameOwnerChanged"
Nov 7, 2016
Nov 7, 2016
32
33
34
35
36
37
38
39
/* Connect to D-Bus System Bus */
gboolean usb_moded_dbus_init_connection(void);
/* Claim D-Bus Service Name */
gboolean usb_moded_dbus_init_service(void);
/* Get current SystemBus connection */
DBusConnection *usb_moded_dbus_get_connection(void);
Mar 22, 2011
Mar 22, 2011
40
41
42
43
44
45
46
47
48
/* cleanup usb on exit */
void usb_moded_dbus_cleanup(void);
/* send signal on system bus */
int usb_moded_send_signal(const char *state_ind);
/* send error signal system bus */
int usb_moded_send_error_signal(const char *error);
Mar 18, 2014
Mar 18, 2014
49
50
51
/* send supported modes signal system bus */
int usb_moded_send_supported_modes_signal(const char *supported_modes);
Apr 4, 2016
Apr 4, 2016
52
53
54
/* send hidden modes signal system bus */
int usb_moded_send_hidden_modes_signal(const char *hidden_modes);
Nov 7, 2016
Nov 7, 2016
55
Nov 7, 2016
Nov 7, 2016
56
57
58
59
60
61
62
/* Callback function type used with usb_moded_get_name_owner_async() */
typedef void (*usb_moded_get_name_owner_fn)(const char *owner);
/* Asynchronous GetNameOwner query */
gboolean usb_moded_get_name_owner_async(const char *name,
usb_moded_get_name_owner_fn cb,
DBusPendingCall **ppc);