comparison libpurple/protocols/yahoo/yahoo_friend.h @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 44b4e8bd759b
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file yahoo_friend.h The Yahoo! protocol plugin YahooFriend object 2 * @file yahoo_friend.h The Yahoo! protocol plugin YahooFriend object
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Gaim is the legal property of its developers, whose names are too numerous 6 * Purple is the legal property of its developers, whose names are too numerous
7 * to list here. Please refer to the COPYRIGHT file distributed with this 7 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * source distribution. 8 * source distribution.
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by 11 * it under the terms of the GNU General Public License as published by
48 gboolean bicon_sent_request; 48 gboolean bicon_sent_request;
49 YahooPresenceVisibility presence; 49 YahooPresenceVisibility presence;
50 int protocol; /* 1=LCS, 2=MSN*/ 50 int protocol; /* 1=LCS, 2=MSN*/
51 } YahooFriend; 51 } YahooFriend;
52 52
53 YahooFriend *yahoo_friend_find(GaimConnection *gc, const char *name); 53 YahooFriend *yahoo_friend_find(PurpleConnection *gc, const char *name);
54 YahooFriend *yahoo_friend_find_or_new(GaimConnection *gc, const char *name); 54 YahooFriend *yahoo_friend_find_or_new(PurpleConnection *gc, const char *name);
55 55
56 void yahoo_friend_set_ip(YahooFriend *f, const char *ip); 56 void yahoo_friend_set_ip(YahooFriend *f, const char *ip);
57 const char *yahoo_friend_get_ip(YahooFriend *f); 57 const char *yahoo_friend_get_ip(YahooFriend *f);
58 58
59 void yahoo_friend_set_game(YahooFriend *f, const char *game); 59 void yahoo_friend_set_game(YahooFriend *f, const char *game);
65 void yahoo_friend_set_buddy_icon_need_request(YahooFriend *f, gboolean needs); 65 void yahoo_friend_set_buddy_icon_need_request(YahooFriend *f, gboolean needs);
66 gboolean yahoo_friend_get_buddy_icon_need_request(YahooFriend *f); 66 gboolean yahoo_friend_get_buddy_icon_need_request(YahooFriend *f);
67 67
68 void yahoo_friend_free(gpointer p); 68 void yahoo_friend_free(gpointer p);
69 69
70 void yahoo_process_presence(GaimConnection *gc, struct yahoo_packet *pkt); 70 void yahoo_process_presence(PurpleConnection *gc, struct yahoo_packet *pkt);
71 void yahoo_friend_update_presence(GaimConnection *gc, const char *name, 71 void yahoo_friend_update_presence(PurpleConnection *gc, const char *name,
72 YahooPresenceVisibility presence); 72 YahooPresenceVisibility presence);
73 73
74 #endif /* _YAHOO_FRIEND_H_ */ 74 #endif /* _YAHOO_FRIEND_H_ */