~network-manager/network-manager/ubuntu.hardy.07

« back to all changes in this revision

Viewing changes to libnm-glib/nm-dbus-utils.h

* merge 0.7~~svn20080905t025540+eni0 snapshot to hardy branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#include <dbus/dbus-glib.h>
5
5
 
6
 
char *nm_dbus_get_string_property (DBusGProxy *proxy,
 
6
char *_nm_dbus_get_string_property (DBusGProxy *proxy,
7
7
                                                                   const char *interface,
8
8
                                                                   const char *prop_name);
9
9
 
10
 
char *nm_dbus_get_object_path_property (DBusGProxy *proxy,
 
10
char *_nm_dbus_get_object_path_property (DBusGProxy *proxy,
11
11
                                                                                const char *interface,
12
12
                                                                                const char *prop_name);
13
13
 
14
 
gint32 nm_dbus_get_int_property (DBusGProxy *proxy,
 
14
gint32 _nm_dbus_get_int_property (DBusGProxy *proxy,
15
15
                                                                 const char *interface,
16
16
                                                                 const char *prop_name);
17
17
 
18
 
guint32 nm_dbus_get_uint_property (DBusGProxy *proxy,
 
18
guint32 _nm_dbus_get_uint_property (DBusGProxy *proxy,
19
19
                                                                   const char *interface,
20
20
                                                                   const char *prop_name);
21
21
 
22
 
gboolean  nm_dbus_get_property (DBusGProxy *proxy,
 
22
gboolean  _nm_dbus_get_property (DBusGProxy *proxy,
23
23
                                                                const char *interface,
24
24
                                                                const char *prop_name,
25
25
                                                                GValue *value);
26
 
void      nm_dbus_set_property (DBusGProxy *proxy,
 
26
void      _nm_dbus_set_property (DBusGProxy *proxy,
27
27
                                                                const char *interface,
28
28
                                                                const char *prop_name,
29
29
                                                                GValue *value);
30
30
 
31
 
char     *nm_dbus_introspect   (DBusGConnection *connection,
 
31
char     *_nm_dbus_introspect   (DBusGConnection *connection,
32
32
                                                                const char *interface,
33
33
                                                                const char *path);
34
34