comparison libpurple/protocols/yahoo/yahoo_friend.h @ 27590:a08e84032814

merge of '2348ff22f0ff3453774b8b25b36238465580c609' and 'e76f11543c2a4aa05bdf584f087cbe3439029661'
author Paul Aurich <paul@darkrain42.org>
date Sun, 12 Jul 2009 05:43:38 +0000
parents 07d09a987b86
children fa827f6f990f
comparison
equal deleted inserted replaced
27104:048bcf41deef 27590:a08e84032814
23 */ 23 */
24 24
25 #ifndef _YAHOO_FRIEND_H_ 25 #ifndef _YAHOO_FRIEND_H_
26 #define _YAHOO_FRIEND_H_ 26 #define _YAHOO_FRIEND_H_
27 27
28 #include "yahoo.h" 28 #include "libymsg.h"
29 #include "yahoo_packet.h" 29 #include "yahoo_packet.h"
30 30
31 typedef enum { 31 typedef enum {
32 YAHOO_PRESENCE_DEFAULT = 0, 32 YAHOO_PRESENCE_DEFAULT = 0,
33 YAHOO_PRESENCE_ONLINE, 33 YAHOO_PRESENCE_ONLINE,
54 gchar *ip; 54 gchar *ip;
55 gboolean bicon_sent_request; 55 gboolean bicon_sent_request;
56 YahooPresenceVisibility presence; 56 YahooPresenceVisibility presence;
57 int protocol; /* 1=LCS, 2=MSN*/ 57 int protocol; /* 1=LCS, 2=MSN*/
58 long int version_id; 58 long int version_id;
59 gchar *alias_id; 59 gchar *alias_id; /* XXX: stick in a YahooPersonalDetails instead? */
60 YahooP2PStatus p2p_status; 60 YahooP2PStatus p2p_status;
61 gboolean p2p_packet_sent; /* 0:not sent, 1=sent */ 61 gboolean p2p_packet_sent; /* 0:not sent, 1=sent */
62 gint session_id; /* session id of friend */ 62 gint session_id; /* session id of friend */
63 } YahooFriend; 63 } YahooFriend;
64 64