doc/account-signals.dox

Sat, 05 Nov 2005 02:09:30 +0000

author
Eoin Coffey <ecoffey@soc.pidgin.im>
date
Sat, 05 Nov 2005 02:09:30 +0000
changeset 11980
fe5c2c58508c
parent 11685
e6357bef856a
child 12053
5aa634db0fc1
permissions
-rw-r--r--

[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>

/** @page account-signals Account Signals

 @signals
  @signal account-connecting
  @signal account-setting-info
  @signal account-set-info
  @signal account-status-changed
 @endsignals

 <hr>

 @signaldef account-connecting
  @signalproto
void (*account_connecting)(GaimAccount *account);
  @endsignalproto
  @signaldesc
   This is called when an account is in the process of connecting.
  @param account The account in the process of connecting.
 @endsignaldef

 @signaldef account-setting-info
  @signalproto
void (*account_setting_info)(GaimAccount *account, const char *new_info);
  @endsignalproto
  @signaldesc
   Emitted when a user is about to send his new user info, or
   profile, to the server.
  @param account  The account that the info will be set on.
  @param new_info The new information to set.
 @endsignaldef

 @signaldef account-set-info
  @signalproto
void (*account_set_info)(GaimAccount *account, const char *new_info);
  @endsignalproto
  @signaldesc
   Emitted when a user sent his new user info, or profile, to the server.
  @param account  The account that the info was set on.
  @param new_info The new information set.
 @endsignaldef

 @signaldef account-status-changed
  @signalproto
void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new);
  @endsignalproto
  @signaldesc
   Emitted when the status of an account changes (after the change).
  @param account The account that changed status.
  @param old     The status before change.
  @param new     The status after change.
 @endsignaldef

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

mercurial