comparison src/multi.h @ 2204:5014b802eb41

[gaim-migrate @ 2214] if you load a protocol for an unknown account or unload one, update the account editor. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 31 Aug 2001 18:09:27 +0000
parents 8f1ca76e46f5
children cff4fbe01c7b
comparison
equal deleted inserted replaced
2203:14100685c95f 2204:5014b802eb41
92 char *label; 92 char *label;
93 void (*callback)(struct gaim_connection *, char *); 93 void (*callback)(struct gaim_connection *, char *);
94 struct gaim_connection *gc; 94 struct gaim_connection *gc;
95 }; 95 };
96 96
97 struct proto_chat_entry {
98 char *label;
99 gboolean is_int;
100 int min;
101 int max;
102 };
103
97 /* now that we have our struct, we're going to need lots of them. Maybe even a list of them. */ 104 /* now that we have our struct, we're going to need lots of them. Maybe even a list of them. */
98 extern GSList *connections; 105 extern GSList *connections;
99 106
100 struct aim_user *new_user(const char *, int, int); 107 struct aim_user *new_user(const char *, int, int);
101 struct gaim_connection *new_gaim_conn(struct aim_user *); 108 struct gaim_connection *new_gaim_conn(struct aim_user *);
102 void destroy_gaim_conn(struct gaim_connection *); 109 void destroy_gaim_conn(struct gaim_connection *);
103 110
104 struct gaim_connection *find_gaim_conn_by_name(char *); 111 struct gaim_connection *find_gaim_conn_by_name(char *);
105 112
106 void account_editor(GtkWidget *, GtkWidget *); 113 void account_editor(GtkWidget *, GtkWidget *);
114 void regenerate_user_list();
107 115
108 void account_online(struct gaim_connection *); 116 void account_online(struct gaim_connection *);
109 void account_offline(struct gaim_connection *); 117 void account_offline(struct gaim_connection *);
110 118
111 void auto_login(); 119 void auto_login();