Changeset f6c963b for protocols/msn


Ignore:
Timestamp:
2007-04-21T04:13:21Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d11dd2f
Parents:
b0eaa5b
Message:

Renamed some more prpl functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn.c

    rb0eaa5b rf6c963b  
    122122}
    123123
    124 static int msn_send_im( struct im_connection *ic, char *who, char *message, int away )
     124static int msn_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
    125125{
    126126        struct msn_switchboard *sb;
     
    231231}
    232232
    233 static void msn_chat_send( struct groupchat *c, char *message, int flags )
     233static void msn_chat_msg( struct groupchat *c, char *message, int flags )
    234234{
    235235        struct msn_switchboard *sb = msn_sb_by_chat( c );
     
    343343{
    344344        if( typing )
    345                 return( msn_send_im( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
     345                return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
    346346        else
    347347                return( 1 );
     
    387387        ret->init = msn_init;
    388388        ret->logout = msn_logout;
    389         ret->send_im = msn_send_im;
     389        ret->buddy_msg = msn_buddy_msg;
    390390        ret->away_states = msn_away_states;
    391391        ret->set_away = msn_set_away;
     
    394394        ret->add_buddy = msn_add_buddy;
    395395        ret->remove_buddy = msn_remove_buddy;
    396         ret->chat_send = msn_chat_send;
     396        ret->chat_msg = msn_chat_msg;
    397397        ret->chat_invite = msn_chat_invite;
    398398        ret->chat_leave = msn_chat_leave;
Note: See TracChangeset for help on using the changeset viewer.