comparison src/multi.h @ 4491:3196d9044a45

[gaim-migrate @ 4766] aim_user is dead. long live gaim_account. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 31 Jan 2003 13:03:47 +0000
parents 0c68d402f59f
children 7bdda84b5431
comparison
equal deleted inserted replaced
4490:70b892694e0b 4491:3196d9044a45
44 GSList *buddy_chats; 44 GSList *buddy_chats;
45 45
46 /* each connection then can have its own protocol-specific data */ 46 /* each connection then can have its own protocol-specific data */
47 void *proto_data; 47 void *proto_data;
48 48
49 struct aim_user *user; 49 struct gaim_account *account;
50 50
51 char username[64]; 51 char username[64];
52 char displayname[128]; 52 char displayname[128];
53 char password[32]; 53 char password[32];
54 guint keepalive; 54 guint keepalive;
104 extern GSList *connections; 104 extern GSList *connections;
105 105
106 /* number of accounts that are currently in the process of connecting */ 106 /* number of accounts that are currently in the process of connecting */
107 extern int connecting_count; 107 extern int connecting_count;
108 108
109 struct aim_user *new_user(const char *, int, int); 109 struct gaim_account *gaim_account_new(const char *, int, int);
110 struct gaim_connection *new_gaim_conn(struct aim_user *); 110 struct gaim_connection *new_gaim_conn(struct gaim_account *);
111 void destroy_gaim_conn(struct gaim_connection *); 111 void destroy_gaim_conn(struct gaim_connection *);
112 112
113 void regenerate_user_list(); 113 void regenerate_user_list();
114 114
115 void account_online(struct gaim_connection *); 115 void account_online(struct gaim_connection *);