Changeset f6c963b for protocols/oscar


Ignore:
Timestamp:
2007-04-21T04:13:21Z (18 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/oscar/oscar.c

    rb0eaa5b rf6c963b  
    18081808}
    18091809
    1810 static int oscar_send_im(struct im_connection *ic, char *name, char *message, int imflags) {
     1810static int oscar_buddy_msg(struct im_connection *ic, char *name, char *message, int imflags) {
    18111811        struct oscar_data *odata = (struct oscar_data *)ic->proto_data;
    18121812        int ret = 0, len = strlen(message);
     
    24512451}
    24522452
    2453 void oscar_chat_send(struct groupchat *c, char *message, int msgflags)
     2453void oscar_chat_msg(struct groupchat *c, char *message, int msgflags)
    24542454{
    24552455        struct im_connection *ic = c->ic;
     
    25902590        ret->keepalive = oscar_keepalive;
    25912591        ret->logout = oscar_logout;
    2592         ret->send_im = oscar_send_im;
     2592        ret->buddy_msg = oscar_buddy_msg;
    25932593        ret->get_info = oscar_get_info;
    25942594        ret->set_away = oscar_set_away;
     
    25962596        ret->add_buddy = oscar_add_buddy;
    25972597        ret->remove_buddy = oscar_remove_buddy;
    2598         ret->chat_send = oscar_chat_send;
     2598        ret->chat_msg = oscar_chat_msg;
    25992599        ret->chat_invite = oscar_chat_invite;
    26002600        ret->chat_leave = oscar_chat_leave;
Note: See TracChangeset for help on using the changeset viewer.