Mercurial > pidgin.yaz
annotate doc/plugin-signals.dox @ 20550:28493a27849b
Looking at purple_contact_set_alias and purple_blist_alias_contact functions
in blist.c, the only difference I see is that the latter function
notifies any existing conversation with the contact so that it can update
its title, while the former doesn't. I can't think of a reason why they
should behave differently, or why we should have both of them. I was going
to deprecate purple_blist_alias_contact in favour of purple_contact_set_alias,
but seeing we do purple_blist_alias_ for buddy and chats, I am deprecating
purple_contact_set_alias instead. OK?
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 19 Sep 2007 10:01:45 +0000 |
parents | 8cf53d7a0887 |
children | e0613cf8c493 |
rev | line source |
---|---|
12053 | 1 /** @page plugin-signals Plugin Signals |
2 | |
3 @signals | |
4 @signal plugin-load | |
5 @signal plugin-unload | |
6 @endsignals | |
7 | |
8 <hr> | |
9 | |
10 @signaldef plugin-load | |
11 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
12 void (*plugin_load)(PurplePlugin *plugin); |
12053 | 13 @endsignalproto |
14 @signaldesc | |
15 Emitted when a plugin is loaded. | |
16 @param plugin The plugin that was loaded. | |
17 @endsignaldef | |
18 | |
19 @signaldef plugin-unload | |
20 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
21 void (*plugin_unload)(PurplePlugin *plugin); |
12053 | 22 @endsignalproto |
23 @signaldesc | |
24 Emitted when a plugin is unloaded. | |
25 @param plugin The plugin that was unloaded. | |
26 @endsignaldef | |
27 | |
28 */ | |
29 // vim: syntax=c tw=75 et |