Changeset cfc8d58 for protocols/yahoo/yahoo2.h
- Timestamp:
- 2007-04-16T04:31:52Z (18 years ago)
- Branches:
- master
- Children:
- b3cae44
- Parents:
- 6bbb939
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo2.h
r6bbb939 rcfc8d58 120 120 /* from is the identity you're sending from. if NULL, the default is used */ 121 121 /* 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 );122 void yahoo_send_im(int id, const char *from, const char *who, const char *msg, int utf8, int picture); 123 123 /* if type is true, send typing notice, else send stopped typing notice */ 124 124 void yahoo_send_typing(int id, const char *from, const char *who, int typ); … … 128 128 void yahoo_set_away(int id, enum yahoo_status state, const char *msg, int away); 129 129 130 void yahoo_add_buddy(int id, const char *who, const char *group );130 void yahoo_add_buddy(int id, const char *who, const char *group, const char *msg); 131 131 void yahoo_remove_buddy(int id, const char *who, const char *group); 132 132 void yahoo_reject_buddy(int id, const char *who, const char *msg); 133 void yahoo_stealth_buddy(int id, const char *who, int unstealth); 133 134 /* if unignore is true, unignore, else ignore */ 134 135 void yahoo_ignore_buddy(int id, const char *who, int unignore); … … 214 215 const char * yahoo_get_profile_url( void ); 215 216 217 void yahoo_buddyicon_request(int id, const char *who); 218 216 219 #include "yahoo_httplib.h" 217 220
Note: See TracChangeset
for help on using the changeset viewer.