view doc/plugin-signals.dox @ 29503:7525698499e3

Move this to im.pidgin.pidgin.next.minor too so im.pidgin.pidgin will compile. *** Plucked rev 48e7bc40f3e696487c1f162edd2f5aeda98dbdd6 (deryni@pidgin.im): Use the new purple_account_get_name_for_display function for the Send To menu. Closes #8391 (though there are likely still plenty of places we should also do this). *** Plucked rev 48e7bc40f3e696487c1f162edd2f5aeda98dbdd6 (deryni@pidgin.im): Use the new purple_account_get_name_for_display function for the Send To menu. Closes #8391 (though there are likely still plenty of places we should also do this).
author John Bailey <rekkanoryo@rekkanoryo.org>
date Wed, 16 Sep 2009 16:26: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