~kvalo/connman/bug-734339

« back to all changes in this revision

Viewing changes to gdbus/gdbus.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel
  • Date: 2010-02-12 10:08:03 UTC
  • mfrom: (1.1.8 upstream) (0.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100212100803-s8iaj8g1dmgwm2uz
Tags: 0.48+dfsg-2
* Ubuntu/Debian sync upload
* Re-add missing changes from 0.45+dfsg that made it only in Ubuntu:
  - ship development parts in a connman-dev package (Closes: 546616)
    - add debian/connman-dev.install
    - update debian/control
* Update long descriptions for connman and connman-dev
  - update debian/control
* Add missing Depends on libglib2.0-dev, libdbus-1-dev for connman-dev
  - update debian/control
* Don't run bootstrap twice during build.
  - update debian/rules
* Remove old configure option: enable-ppp, with-pppd, enable-novatel,
  enable-huawei and enable-modemmgr are no longer recognized.
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
                                GDBusWatchFunction function,
126
126
                                void *user_data, GDBusDestroyFunction destroy);
127
127
guint g_dbus_add_signal_watch(DBusConnection *connection,
128
 
                                const char *rule, GDBusSignalFunction function,
129
 
                                void *user_data, GDBusDestroyFunction destroy);
 
128
                                const char *sender, const char *path,
 
129
                                const char *interface, const char *member,
 
130
                                GDBusSignalFunction function, void *user_data,
 
131
                                GDBusDestroyFunction destroy);
130
132
gboolean g_dbus_remove_watch(DBusConnection *connection, guint tag);
131
133
void g_dbus_remove_all_watches(DBusConnection *connection);
132
134