view doc/cmd-signals.dox @ 31043:a95e7ed3d7d2

11 translation updates and add a Maithili translation. Fixes #12466, #12512, #12579, #12633, #12711, #12728, #12729, #12735, #12739, #12746, #12751.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 17 Oct 2010 03:33:52 +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
*/