Wed, 22 Jan 2025 20:47:54 -0600
Prepare for the 2.14.14 release
Testing Done:
Ran `make distcheck`
Reviewed at https://reviews.imfreedom.org/r/3779/
| 12053 | 1 | /** @page core-signals Core Signals |
| 2 | ||
| 3 | @signals | |
| 4 | @signal quitting | |
|
28189
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
5 | @signal uri-handler |
| 12053 | 6 | @endsignals |
| 7 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16257
diff
changeset
|
8 | @see core.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16257
diff
changeset
|
9 | |
| 12053 | 10 | <hr> |
| 11 | ||
| 12 | @signaldef quitting | |
| 13 | @signalproto | |
| 14 | void (*quitting)(); | |
| 15 | @endsignalproto | |
| 16 | @signaldesc | |
| 16257 | 17 | Emitted when libpurple is quitting. |
| 12053 | 18 | @endsignaldef |
| 19 | ||
|
28189
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
20 | @signaldef uri-handler |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
21 | @signalproto |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
22 | gboolean (*uri_handler)(const gchar *proto, const gchar *cmd, GHashTable *params); |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
23 | @endsignalproto |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
24 | @signaldesc |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
25 | Emitted when handling a registered URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
26 | @param proto The protocol of the URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
27 | @param cmd The 'command' of the URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
28 | @param params Any key/value parameters from the URI. |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
29 | @endsignaldef |
|
db6dce6fba36
Document the uri-handler signal. Did I get this right?
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
30 | |
| 12053 | 31 | */ |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16257
diff
changeset
|
32 | // vim: syntax=c.doxygen tw=75 et |