view doc/connection-signals.dox @ 8746:dbe23964ff2b

[gaim-migrate @ 9501] (17:07:06) Luke: Hello Luke, Sean has added 2 newlines in src/protocols/novell/novell.c. Unfortunately this breaks the string freeze. If Sean's patch will not be reverted, please commit my German translation update (file i18n55.patch). If Sean's patch will be reverted, please do nothing. Regards, Bj?rn (17:09:28) Sean: oh, yeah, I did. I did that yesterady, didn't I? (17:09:34) Luke: *nods* (17:10:16) Sean: ok, revert it. (17:10:24) Sean: please (17:10:27) Luke: willdo committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 21 Apr 2004 21:14:21 +0000
parents aca39e77db85
children 8cf53d7a0887
line wrap: on
line source

/** @page connection-signals Connection Signals

 @signals
  @signal signing-on
  @signal signed-on
  @signal signing-off
  @signal signed-off
 @endsignals

 <hr>

 @signaldef signing-on
  @signalproto
void (*signing_on)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection is about to sign on.
  @param gc The connection that is about to sign on.
 @endsignaldef

 @signaldef signed-on
  @signalproto
void (*signed_on)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection has signed on.
  @param gc The connection that has signed on.
 @endsignaldef

 @signaldef signing-off
  @signalproto
void (*signing_off)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection is about to sign off.
  @param gc The connection that is about to sign off.
 @endsignaldef

 @signaldef signed-off
  @signalproto
void (*signed_off)(GaimConnection *gc);
  @endsignalproto
  @signaldesc
   Emitted when a connection has signed off.
  @param gc The connection that has signed off.
 @endsignaldef

 */
// vim: syntax=c tw=75 et