Mercurial > pidgin.yaz
annotate doc/dbus-server-signals.dox @ 14490:f283ebe419e4
[gaim-migrate @ 17209]
More changes to help make dist work again. Let's see here
* Alphabetize some stuff in gtk/Makefile.am
* Include gntwm.h in the tar.gz
* Include gntplugin.h in the tar.gz (instead of gntplugin.c (typo))
* libgaim/connection.c and libgaim/upnp.c shouldn't include gaim.h
gaim.h should only be used by stuff outside of libgaim
* Include gaim.h in the tar.gz (not sure if we want to keep it this
way, I'll send an email to gaim-devel in a little bit)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 09 Sep 2006 21:32:30 +0000 |
parents | 1ec93dd2f359 |
children | e0613cf8c493 |
rev | line source |
---|---|
12053 | 1 /** @page dbus-server-signals DBus Server Signals |
2 | |
3 @signals | |
4 @signal dbus-method-called | |
5 @signal dbus-introspect | |
6 @endsignals | |
7 | |
8 <hr> | |
9 | |
10 @signaldef dbus-method-called | |
11 @signalproto | |
12 gboolean (*dbus_method_called)(DBusConnection *connection, | |
13 DBusMessage *message); | |
14 @endsignalproto | |
15 @signaldesc | |
16 Emitted when a dbus method is going to be called. | |
17 @param connection The DBus connection. | |
18 @param message The DBus message. | |
19 @return TRUE if signal handler handled the method. ??? | |
20 @endsignaldef | |
21 | |
22 @signaldef dbus-introspect | |
23 @signalproto | |
24 void (*dbus_introspect)(GList **bidings_list); | |
25 @endsignalproto | |
26 @signaldesc | |
27 ??? | |
28 @param bindings_list ??? | |
29 @endsignaldef | |
30 | |
31 */ | |
32 // vim: syntax=c tw=75 et |