Mercurial > pidgin
annotate doc/cipher-signals.dox @ 14272:7635195195c0
[gaim-migrate @ 16957]
-Updated the win32dep debug function to correctly match the core function (the core was apparently changed a while ago and this was never updated).
-Updated wgaim_read_reg_string() to deal with non-ascii strings correctly, created corresponding wgaim_write_reg_string(). Use these in various places.
-Update some win32dep arguments and return values to be correctly marked as having constant values.
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Mon, 21 Aug 2006 20:58:20 +0000 |
parents | 1ec93dd2f359 |
children | 8cf53d7a0887 |
rev | line source |
---|---|
12053 | 1 /** @page cipher-signals Cipher Signals |
2 | |
3 @signals | |
4 @signal cipher-added | |
5 @signal cipher-removed | |
6 @endsignals | |
7 | |
8 <hr> | |
9 | |
10 @signaldef cipher-added | |
11 @signalproto | |
12 void (*cipher_added)(GaimCipher *cipher); | |
13 @endsignalproto | |
14 @signaldesc | |
15 Emitted when a cipher is added. | |
16 @param cipher The cipher that was added. | |
17 @endsignaldef | |
18 | |
19 @signaldef cipher-removed | |
20 @signalproto | |
21 void (*cipher_removed)(GaimCipher *cipher); | |
22 @endsignalproto | |
23 @signaldesc | |
24 Emitted when a cipher is removed. | |
25 @param cipher The cipher that was removed. | |
26 @endsignaldef | |
27 | |
28 */ | |
29 // vim: syntax=c tw=75 et |