Wed, 09 Dec 2009 21:50:01 +0000
Allow receiving a NLN command from ourselves. This will probably need to be
changed so that when we're logging in we replace the other endpoint's
settings instead of saving them (if that's what's happening). Probably
should test this out sometime soon.
| 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 |