Mercurial > pidgin.yaz
annotate doc/cipher-signals.dox @ 22424:7b4d39ffd563
Change OSCAR to use UTF-16 rather than UCS-2 conversions. Apparently
some iconv implementations (notably win_iconv) are dropping UCS-2
support, due to the impression that it is obsolete. For BMP
characters, UTF-16 should be bitwise identical to UCS-2, so if OSCAR
really *is* UCS-2, this shouldn't hurt anything. If it turns out it's
capable of UTF-16, well, then, more's the better.
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Fri, 07 Mar 2008 04:01:20 +0000 |
parents | e0613cf8c493 |
children |
rev | line source |
---|---|
12053 | 1 /** @page cipher-signals Cipher Signals |
2 | |
3 @signals | |
4 @signal cipher-added | |
5 @signal cipher-removed | |
6 @endsignals | |
7 | |
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
8 @see cipher.h |
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
9 |
12053 | 10 <hr> |
11 | |
12 @signaldef cipher-added | |
13 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
14 void (*cipher_added)(PurpleCipher *cipher); |
12053 | 15 @endsignalproto |
16 @signaldesc | |
17 Emitted when a cipher is added. | |
18 @param cipher The cipher that was added. | |
19 @endsignaldef | |
20 | |
21 @signaldef cipher-removed | |
22 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
23 void (*cipher_removed)(PurpleCipher *cipher); |
12053 | 24 @endsignalproto |
25 @signaldesc | |
26 Emitted when a cipher is removed. | |
27 @param cipher The cipher that was removed. | |
28 @endsignaldef | |
29 | |
30 */ | |
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
31 // vim: syntax=c.doxygen tw=75 et |