view doc/plugin-signals.dox @ 25636:1a5861622794

Clarify that the displaying-email-notification signal only fires for notification about single emails (as opposed to multiple emails which triggers the displaying-emails-notification signal). Is there a reason we need this distinction? Could we not just drop displaying-email-notification and trust people to look at the count?
author Etan Reisner <pidgin@unreliablesource.net>
date Sun, 01 Mar 2009 16:17:04 +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