Ignore:
Timestamp:
2007-04-16T04:31:52Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
b3cae44
Parents:
6bbb939
Message:

Updating the Yahoo! module. This seems to fix handling of incoming away
states/messages, should fix some issues with group chats, and unfortunately
also adds some crap which I don't want to clean up for now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo2.h

    r6bbb939 rcfc8d58  
    120120/* from is the identity you're sending from.  if NULL, the default is used */
    121121/* utf8 is whether msg is a utf8 string or not. */
    122 void yahoo_send_im(int id, const char *from, const char *who, const char *msg, int utf8);
     122void yahoo_send_im(int id, const char *from, const char *who, const char *msg, int utf8, int picture);
    123123/* if type is true, send typing notice, else send stopped typing notice */
    124124void yahoo_send_typing(int id, const char *from, const char *who, int typ);
     
    128128void yahoo_set_away(int id, enum yahoo_status state, const char *msg, int away);
    129129
    130 void yahoo_add_buddy(int id, const char *who, const char *group);
     130void yahoo_add_buddy(int id, const char *who, const char *group, const char *msg);
    131131void yahoo_remove_buddy(int id, const char *who, const char *group);
    132132void yahoo_reject_buddy(int id, const char *who, const char *msg);
     133void yahoo_stealth_buddy(int id, const char *who, int unstealth);
    133134/* if unignore is true, unignore, else ignore */
    134135void yahoo_ignore_buddy(int id, const char *who, int unignore);
     
    214215const char  * yahoo_get_profile_url( void );
    215216
     217void yahoo_buddyicon_request(int id, const char *who);
     218
    216219#include "yahoo_httplib.h"
    217220
Note: See TracChangeset for help on using the changeset viewer.