comparison src/aim.c @ 94:9f6ce50ffb78

[gaim-migrate @ 104] Woohoo, the landing of the plugins. Nearly everything necessary is here. The only thing missing is that you can't load a plugin without signing on first (at least, not without some trickery). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 09 Apr 2000 11:18:25 +0000
parents 2cae618a91e2
children 247f540ea6e1
comparison
equal deleted inserted replaced
93:5ca21b68eb29 94:9f6ce50ffb78
151 "signoff", 151 "signoff",
152 _("Signoff"), 152 _("Signoff"),
153 signoff, 153 signoff,
154 NULL); 154 NULL);
155 #endif 155 #endif
156
157 #ifdef GAIM_PLUGINS
158 {
159 GList *c = callbacks;
160 struct gaim_callback *g;
161 void (*function)(void *);
162 while (c) {
163 g = (struct gaim_callback *)c->data;
164 if (g->event == event_signon && g->function != NULL) {
165 function = g->function;
166 (*function)(g->data);
167 }
168 c = c->next;
169 }
170 }
171 #endif
172
156 running = FALSE; 173 running = FALSE;
157 return; 174 return;
158 } 175 }
159 176
160 177