Mercurial > pidgin.yaz
annotate doc/cipher-signals.dox @ 18551:d5cf2c466e9a
merge of '01d1a63fe1ad7ad2f78ff88c6540afd927693362'
and 'd4c3811d8ca7f9e02be6a9ea4b3eba0d251d4c9a'
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Mon, 16 Jul 2007 21:11:23 +0000 |
parents | 8cf53d7a0887 |
children | e0613cf8c493 |
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 | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
12 void (*cipher_added)(PurpleCipher *cipher); |
12053 | 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 | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
12053
diff
changeset
|
21 void (*cipher_removed)(PurpleCipher *cipher); |
12053 | 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 |