Mon, 08 Jun 2009 02:24:49 +0000
Use the JID for adding a chat/buddy because the name is for descriptive
purpose only, and using it will not fill in the Add Chat dialog correctly.
Because the JID is not visible, the user will not know what to actually put
there instead.
| 12053 | 1 | /** @page plugin-signals Plugin Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal plugin-load | |
| 5 | @signal plugin-unload | |
| 6 | @endsignals | |
| 7 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
8 | @see plugin.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
9 | |
| 12053 | 10 | <hr> |
| 11 | ||
| 12 | @signaldef plugin-load | |
| 13 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12053
diff
changeset
|
14 | void (*plugin_load)(PurplePlugin *plugin); |
| 12053 | 15 | @endsignalproto |
| 16 | @signaldesc | |
| 17 | Emitted when a plugin is loaded. | |
| 18 | @param plugin The plugin that was loaded. | |
| 19 | @endsignaldef | |
| 20 | ||
| 21 | @signaldef plugin-unload | |
| 22 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12053
diff
changeset
|
23 | void (*plugin_unload)(PurplePlugin *plugin); |
| 12053 | 24 | @endsignalproto |
| 25 | @signaldesc | |
| 26 | Emitted when a plugin is unloaded. | |
| 27 | @param plugin The plugin that was unloaded. | |
| 28 | @endsignaldef | |
| 29 | ||
| 30 | */ | |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
31 | // vim: syntax=c.doxygen tw=75 et |