Changeset aef4828 for protocols/nogaim.h


Ignore:
Timestamp:
2007-04-06T05:20:31Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
552e641
Parents:
0da65d5
Message:

More cleanups, mainly in the callbacks. Replaced things like
do_error_dialog() and (set|hide)_login_progress(_error)?() with things
that hopefully make more sense.

Although it's still not really great...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.h

    r0da65d5 raef4828  
    206206
    207207/* multi.c */
    208 G_MODULE_EXPORT struct im_connection *new_gaim_conn( account_t *acc );
    209 G_MODULE_EXPORT void destroy_gaim_conn( struct im_connection *ic );
    210 G_MODULE_EXPORT void set_login_progress( struct im_connection *ic, int step, char *msg );
    211 G_MODULE_EXPORT void hide_login_progress( struct im_connection *ic, char *msg );
    212 G_MODULE_EXPORT void hide_login_progress_error( struct im_connection *ic, char *msg );
    213 G_MODULE_EXPORT void serv_got_crap( struct im_connection *ic, char *format, ... ) G_GNUC_PRINTF( 2, 3 );
    214 G_MODULE_EXPORT void account_online( struct im_connection *ic );
    215 G_MODULE_EXPORT void signoff( struct im_connection *ic );
     208G_MODULE_EXPORT struct im_connection *imc_new( account_t *acc );
     209G_MODULE_EXPORT void imc_free( struct im_connection *ic );
     210G_MODULE_EXPORT void imc_log( struct im_connection *ic, char *format, ... );
     211G_MODULE_EXPORT void imc_error( struct im_connection *ic, char *format, ... );
     212G_MODULE_EXPORT void imc_connected( struct im_connection *ic );
     213G_MODULE_EXPORT void imc_logout( struct im_connection *ic );
    216214
    217215/* dialogs.c */
    218 G_MODULE_EXPORT void do_error_dialog( struct im_connection *ic, char *msg, char *title );
    219216G_MODULE_EXPORT void do_ask_dialog( struct im_connection *ic, char *msg, void *data, void *doit, void *dont );
    220217
Note: See TracChangeset for help on using the changeset viewer.