libpurple/reference/signals_core.md

changeset 42847
fbb0d252bc35
parent 42095
01e68f28576f
equal deleted inserted replaced
42846:c176f1b12aaa 42847:fbb0d252bc35
1 Title: Core Signals
2 Slug: core-signals
3
4 ## Core Signals
5
6 ### Signal List
7
8 * [core-uri-handler](#uri-handler)
9
10 ### Signal Details
11
12 #### uri-handler
13
14 ```c
15 gboolean user_function(const gchar *proto,
16 const gchar *cmd,
17 GHashTable *params,
18 gpointer user_data);
19 ```
20
21 Emitted when handling a registered URI.
22
23 **Parameters:**
24
25 **proto**
26 : The protocol of the URI.
27
28 **cmd**
29 : The 'command' of the URI.
30
31 **params**
32 : Any key/value parameters from the URI.
33
34 **user_data**
35 : User data set when the signal handler was connected.

mercurial