view doc/cmd-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 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
*/