view doc/cmd-signals.dox @ 32768:f01d6c9f3492

explicit merge of 'c5b3879b829a5067b2189e4393ca3b80f6fd96c3' and '90634d4a19f4639f388839e3efc46791f1ee31ab' to branch 'im.pidgin.pidgin'
author Richard Laager <rlaager@wiktel.com>
date Fri, 06 Apr 2012 04:30:00 +0000
parents 1ca49b349037
children
line wrap: on
line source

/** @page cmd-signals Command Signals
  @signals
  	@signal cmd-added
	@signal cmd-removed
  @endsignals

  @see cmds.h

  @signaldef cmd-added
  	@signalproto
void (*cmd_added)(const char *command, PurpleCmdPriority priority,
                  PurpleCmdFlag flag);
	@endsignalproto
	@signaldesc
	 Emitted when a new command is added.
	@param command   The new command.
	@param priority  The priority of the new command.
	@param flag      The command flags.
  @endsignaldef

  @signaldef cmd-removed
  	@signalproto
void (*cmd_removed)(const char *command);
	@endsignalproto
	@signaldesc
	 Emitted when a command is removed.
	@param command   The removed command.
  @endsignaldef
*/