Sat, 05 Nov 2005 02:09:30 +0000
[gaim-migrate @ 14273]
Mono cleanup patch from Eoin Coffey
First, I changed mono_loader_ to ml_, since I was
getting sick of typing mono_loader_ :-D
Moved the mono runtime init and deinit code out of
mono.c into ml_init and ml_uninit in mono-helper.c
Added api/Status.cs and loader/status-glue.c so the
.net api now knows very little (as in the 'id') of
statuses.
committer: Gary Kramlich <grim@reaperworld.com>
|
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 | ||
| 10 | <hr> | |
| 11 | ||
| 12 | @signaldef signing-on | |
| 13 | @signalproto | |
| 14 | void (*signing_on)(GaimConnection *gc); | |
| 15 | @endsignalproto | |
| 16 | @signaldesc | |
| 17 | Emitted when a connection is about to sign on. | |
| 18 | @param gc The connection that is about to sign on. | |
| 19 | @endsignaldef | |
| 20 | ||
| 21 | @signaldef signed-on | |
| 22 | @signalproto | |
| 23 | void (*signed_on)(GaimConnection *gc); | |
| 24 | @endsignalproto | |
| 25 | @signaldesc | |
| 26 | Emitted when a connection has signed on. | |
| 27 | @param gc The connection that has signed on. | |
| 28 | @endsignaldef | |
| 29 | ||
| 30 | @signaldef signing-off | |
| 31 | @signalproto | |
|
6724
e1d416a4a4bc
[gaim-migrate @ 7251]
Christian Hammond <chipx86@chipx86.com>
parents:
6611
diff
changeset
|
32 | void (*signing_off)(GaimConnection *gc); |
| 6611 | 33 | @endsignalproto |
| 34 | @signaldesc | |
| 35 | Emitted when a connection is about to sign off. | |
| 36 | @param gc The connection that is about to sign off. | |
| 37 | @endsignaldef | |
| 38 | ||
| 39 | @signaldef signed-off | |
| 40 | @signalproto | |
|
6724
e1d416a4a4bc
[gaim-migrate @ 7251]
Christian Hammond <chipx86@chipx86.com>
parents:
6611
diff
changeset
|
41 | void (*signed_off)(GaimConnection *gc); |
| 6611 | 42 | @endsignalproto |
| 43 | @signaldesc | |
| 44 | Emitted when a connection has signed off. | |
| 45 | @param gc The connection that has signed off. | |
| 46 | @endsignaldef | |
| 47 | ||
| 48 | */ | |
| 49 | // vim: syntax=c tw=75 et |