doc/cmd-signals.dox

Sat, 03 Jul 2010 01:15:49 +0000

author
Paul Aurich <darkrain42@pidgin.im>
date
Sat, 03 Jul 2010 01:15:49 +0000
changeset 30489
1ce0f6617b57
parent 23557
73ca7c62ad11
permissions
-rw-r--r--

Did I mention this is entirely untested? (I don't have GTK+ on
my laptop)

/** @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
*/

mercurial