Sun, 07 Oct 2007 18:49:50 +0000
Add some links from signal documentation back to the documentation for the
corresponding header. Also, if there are going to be vim modelines with
"syntax" settings, they may as well be "c.doxygen" not "c".
|
6724
e1d416a4a4bc
[gaim-migrate @ 7251]
Christian Hammond <chipx86@chipx86.com>
parents:
6611
diff
changeset
|
1 | /** @page connection-signals Connection Signals |
| 6611 | 2 | |
| 3 | @signals | |
| 4 | @signal signing-on | |
| 5 | @signal signed-on | |
| 6 | @signal signing-off | |
| 7 | @signal signed-off | |
| 8 | @endsignals | |
| 9 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
10 | @see connection.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
11 | |
| 6611 | 12 | <hr> |
| 13 | ||
| 14 | @signaldef signing-on | |
| 15 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
6724
diff
changeset
|
16 | void (*signing_on)(PurpleConnection *gc); |
| 6611 | 17 | @endsignalproto |
| 18 | @signaldesc | |
| 19 | Emitted when a connection is about to sign on. | |
| 20 | @param gc The connection that is about to sign on. | |
| 21 | @endsignaldef | |
| 22 | ||
| 23 | @signaldef signed-on | |
| 24 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
6724
diff
changeset
|
25 | void (*signed_on)(PurpleConnection *gc); |
| 6611 | 26 | @endsignalproto |
| 27 | @signaldesc | |
| 28 | Emitted when a connection has signed on. | |
| 29 | @param gc The connection that has signed on. | |
| 30 | @endsignaldef | |
| 31 | ||
| 32 | @signaldef signing-off | |
| 33 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
6724
diff
changeset
|
34 | void (*signing_off)(PurpleConnection *gc); |
| 6611 | 35 | @endsignalproto |
| 36 | @signaldesc | |
| 37 | Emitted when a connection is about to sign off. | |
| 38 | @param gc The connection that is about to sign off. | |
| 39 | @endsignaldef | |
| 40 | ||
| 41 | @signaldef signed-off | |
| 42 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
6724
diff
changeset
|
43 | void (*signed_off)(PurpleConnection *gc); |
| 6611 | 44 | @endsignalproto |
| 45 | @signaldesc | |
| 46 | Emitted when a connection has signed off. | |
| 47 | @param gc The connection that has signed off. | |
| 48 | @endsignaldef | |
| 49 | ||
| 50 | */ | |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
51 | // vim: syntax=c.doxygen tw=75 et |