Mercurial > pidgin.yaz
view doc/connection-signals.dox @ 17370:7a0061f4845d
Add msim_uid2username_from_blist() to lookup a username by userid, by
looking at associated 'uid' ints on the buddy list. Not used yet because
it crashes the program. Purpose was to lookup the uid->username mapping
locally, avoiding the need to send a lookup request to the server, but it
is not there yet.
Also, add TODO comments for removal of msim_lookup_user()-related callbacks.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Thu, 07 Jun 2007 04:56:01 +0000 |
parents | 8cf53d7a0887 |
children | e0613cf8c493 |
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)(PurpleConnection *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)(PurpleConnection *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)(PurpleConnection *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)(PurpleConnection *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