~bluetooth/ubuntu/lucid/obexd/lp_559412

« back to all changes in this revision

Viewing changes to gdbus/gdbus.h

  • Committer: Baptiste Mille-Mathias
  • Date: 2010-03-15 19:43:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: baptiste.millemathias@gmail.com-20100315194306-bsoo9qovl1qt0pi2
Tags: 0.22-0ubuntu1
* New upstream release (LP: #539914):
  - Fix file corruption during PUT operation. (LP: #421684]
  - Fix the response of PUT requests for PBAP.
  - Fix blocking while waiting capability script to exit.
  - Fix compilation issues with driver and plugin options.
  - Fix service driver selection when WHO header is informed.
  - Fix issue with PC-Suite WHO header.
  - Fix issue when mime type exists but is unknown.
  - Fix issue when opening file fails during SendFiles.
  - Fix error code response when there is no default vCard.
  - Fix a memory leak when opening a folder for listing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *
3
3
 *  D-Bus helper library
4
4
 *
5
 
 *  Copyright (C) 2004-2009  Marcel Holtmann <marcel@holtmann.org>
 
5
 *  Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
6
6
 *
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
40
40
DBusConnection *g_dbus_setup_bus(DBusBusType type, const char *name,
41
41
                                                        DBusError *error);
42
42
 
 
43
DBusConnection *g_dbus_setup_private(DBusBusType type, const char *name,
 
44
                                                        DBusError *error);
 
45
 
43
46
gboolean g_dbus_request_name(DBusConnection *connection, const char *name,
44
47
                                                        DBusError *error);
45
48
 
88
91
 
89
92
gboolean g_dbus_register_interface(DBusConnection *connection,
90
93
                                        const char *path, const char *name,
91
 
                                        GDBusMethodTable *methods,
92
 
                                        GDBusSignalTable *signals,
93
 
                                        GDBusPropertyTable *properties,
 
94
                                        const GDBusMethodTable *methods,
 
95
                                        const GDBusSignalTable *signals,
 
96
                                        const GDBusPropertyTable *properties,
94
97
                                        void *user_data,
95
98
                                        GDBusDestroyFunction destroy);
96
99
gboolean g_dbus_unregister_interface(DBusConnection *connection,
125
128
                                GDBusWatchFunction function,
126
129
                                void *user_data, GDBusDestroyFunction destroy);
127
130
guint g_dbus_add_signal_watch(DBusConnection *connection,
128
 
                                const char *rule, GDBusSignalFunction function,
129
 
                                void *user_data, GDBusDestroyFunction destroy);
 
131
                                const char *sender, const char *path,
 
132
                                const char *interface, const char *member,
 
133
                                GDBusSignalFunction function, void *user_data,
 
134
                                GDBusDestroyFunction destroy);
130
135
gboolean g_dbus_remove_watch(DBusConnection *connection, guint tag);
131
136
void g_dbus_remove_all_watches(DBusConnection *connection);
132
137