Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn.h

    rbb839e8 r70ac477  
    7070        int trId;
    7171       
    72         GSList *msgq;
     72        GSList *msgq, *grpq;
    7373        GSList *switchboards;
    7474        int sb_failures;
    7575        time_t first_sb_failure;
     76        GSList *filetransfers;
    7677       
    7778        const struct msn_away_state *away_state;
     
    118119        char *who;
    119120        char *text;
     121};
     122
     123struct msn_groupadd
     124{
     125        char *who;
     126        char *group;
    120127};
    121128
     
    159166int msn_write( struct im_connection *ic, char *s, int len );
    160167int msn_logged_in( struct im_connection *ic );
    161 int msn_buddy_list_add( struct im_connection *ic, char *list, char *who, char *realname );
     168int msn_buddy_list_add( struct im_connection *ic, const char *list, const char *who, const char *realname_, const char *group );
    162169int msn_buddy_list_remove( struct im_connection *ic, char *list, char *who );
    163170void msn_buddy_ask( struct im_connection *ic, char *handle, char *realname );
     
    167174char *msn_http_encode( const char *input );
    168175void msn_msgq_purge( struct im_connection *ic, GSList **list );
     176gboolean msn_set_display_name( struct im_connection *ic, const char *rawname );
    169177
    170178/* tables.c */
     
    188196void msn_sb_stop_keepalives( struct msn_switchboard *sb );
    189197
     198/* invitation.c */
     199void msn_ftp_transfer_request( struct im_connection *ic, file_transfer_t *ft, char *who );
     200
    190201#endif //_MSN_H
Note: See TracChangeset for help on using the changeset viewer.