view doc/plugin-signals.dox @ 24455:a4fb67b786c5

Adding ICQ X-Status icons from N3fr0n. These will be used as part of a small 16x16 emoticon theme that Hylke started, unless or until he decides to redo them to more closely match the 24x24 default icons. They will also, of course, be used for the ICQ X-Status support. These icons are licensed under the GPLv2 or any later version, as per N3fr0n's comments in ticket #4508. Refs #4508
author unknown
date Sun, 16 Nov 2008 07:56:55 +0000
parents e0613cf8c493
children
line wrap: on
line source

/** @page plugin-signals Plugin Signals

 @signals
  @signal plugin-load
  @signal plugin-unload
 @endsignals

 @see plugin.h

 <hr>

 @signaldef plugin-load
  @signalproto
void (*plugin_load)(PurplePlugin *plugin);
  @endsignalproto
  @signaldesc
   Emitted when a plugin is loaded.
  @param plugin The plugin that was loaded.
 @endsignaldef

 @signaldef plugin-unload
  @signalproto
void (*plugin_unload)(PurplePlugin *plugin);
  @endsignalproto
  @signaldesc
   Emitted when a plugin is unloaded.
  @param plugin The plugin that was unloaded.
 @endsignaldef

 */
// vim: syntax=c.doxygen tw=75 et