doc/reference/libpurple/signals_cmd.md

Thu, 21 Mar 2024 00:19:08 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 21 Mar 2024 00:19:08 -0500
changeset 42649
6986f5428d30
parent 41164
d861b10105fb
permissions
-rw-r--r--

Add a doc check unit test to Pidgin and fix the issues it found

Testing Done:
Ran the unit tests.

Reviewed at https://reviews.imfreedom.org/r/3043/

Title: Command Signals
Slug: command-signals

## Command Signals

### Signal List

* [cmd-added](#cmd-added)
* [cmd-removed](#cmd-removed)

### Signal Details

#### cmd-added

```c
void user_function(const gchar *command,
                   PurpleCmdPriority priority,
                   PurpleCmdFlag flag,
                   gpointer user_data);
```

Emitted when a new command is added.

**Parameters:**

**command**
: The new command.

**priority**
: The priority of the new command.

**flag**
: The command flags.

**user_data**
: User data set when the signal handler was connected.

----

#### cmd-removed

```c
void user_function(const gchar *command, gpointer user_data);
```

Emitted when a command is removed.

**Parameters:**

**command**
: The removed command.

**user_data**
: User data set when the signal handler was connected.

mercurial