doc/reference/libpurple/signals_core.md

Mon, 13 Nov 2023 21:40:33 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Mon, 13 Nov 2023 21:40:33 -0600
changeset 42489
0edea2beaa95
parent 42095
01e68f28576f
permissions
-rw-r--r--

Use libraries when generating pkgconfig files

This argument magically Does The Right Thing for both external and subproject
requirements, [though the docs are missing that](https://github.com/mesonbuild/meson/issues/6037#issuecomment-543938956).

Testing Done:
Compiled and checked the `meson-private/*.pc` files seemed alright still.

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

Title: Core Signals
Slug: core-signals

## Core Signals

### Signal List

* [core-uri-handler](#uri-handler)

### Signal Details

#### uri-handler

```c
gboolean user_function(const gchar *proto,
                       const gchar *cmd,
                       GHashTable *params,
                       gpointer user_data);
```

Emitted when handling a registered URI.

**Parameters:**

**proto**
: The protocol of the URI.

**cmd**
: The 'command' of the URI.

**params**
: Any key/value parameters from the URI.

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

mercurial