Changeset 0da65d5 for query.h


Ignore:
Timestamp:
2007-03-31T05:40:45Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
aef4828
Parents:
fa29d093
Message:

s/gaim_connection/im_connection/ and some other minor API changes. The rest
will come tomorrow. It compiles, I'll leave the real testing up to someone
else. ;-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • query.h

    rfa29d093 r0da65d5  
    2929typedef struct query
    3030{
    31         struct gaim_connection *gc;
     31        struct im_connection *ic;
    3232        char *question;
    3333        void (* yes) ( gpointer w, void *data );
     
    3737} query_t;
    3838
    39 query_t *query_add( irc_t *irc, struct gaim_connection *gc, char *question, void *yes, void *no, void *data );
     39query_t *query_add( irc_t *irc, struct im_connection *ic, char *question, void *yes, void *no, void *data );
    4040void query_del( irc_t *irc, query_t *q );
    41 void query_del_by_gc( irc_t *irc, struct gaim_connection *gc );
     41void query_del_by_conn( irc_t *irc, struct im_connection *ic );
    4242void query_answer( irc_t *irc, query_t *q, int ans );
    4343
Note: See TracChangeset for help on using the changeset viewer.