comparison src/multi.c @ 2086:424a40f12a6c

[gaim-migrate @ 2096] moving protocols from plugins/ to src/protocols. making it so that you can select which protocols are compiled statically. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 31 Jul 2001 01:00:39 +0000
parents 6f049002d963
children a93aeb6f813d
comparison
equal deleted inserted replaced
2085:7ebb4322f89b 2086:424a40f12a6c
207 } 207 }
208 208
209 static void free_muo(GtkWidget *b, struct mod_usr_opt *m) 209 static void free_muo(GtkWidget *b, struct mod_usr_opt *m)
210 { 210 {
211 g_free(m); 211 g_free(m);
212 }
213
214 void get_good(struct gaim_connection **gc)
215 {
216 GSList *c = connections; *gc = NULL;
217 while (c) {
218 if (((struct gaim_connection *)c->data)->protocol < 2) {
219 *gc = c->data; return;
220 }
221 c = c->next;
222 }
223 } 212 }
224 213
225 static GtkWidget *acct_button(const char *text, struct aim_user *u, int option, GtkWidget *box) 214 static GtkWidget *acct_button(const char *text, struct aim_user *u, int option, GtkWidget *box)
226 { 215 {
227 GtkWidget *button; 216 GtkWidget *button;