comparison src/ui.h @ 4608:5fcb44d771d2

[gaim-migrate @ 4896] just because an account signs off doesn't mean we can forget about it ;-) committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 24 Feb 2003 00:29:54 +0000
parents 493f050dc11a
children 42d53c416bb9
comparison
equal deleted inserted replaced
4607:8742023570be 4608:5fcb44d771d2
27 #endif 27 #endif
28 28
29 #include <gtk/gtk.h> 29 #include <gtk/gtk.h>
30 #include <gdk-pixbuf/gdk-pixbuf.h> 30 #include <gdk-pixbuf/gdk-pixbuf.h>
31 31
32 #include "core.h"
33 #include "multi.h"
32 #include "gtkconv.h" 34 #include "gtkconv.h"
33 #include "gtkft.h" 35 #include "gtkft.h"
34 #include "gtkutils.h" 36 #include "gtkutils.h"
35 #include "stock.h" 37 #include "stock.h"
36 38
228 }; 230 };
229 231
230 232
231 /* this is used for queuing messages received while away. This is really a UI function 233 /* this is used for queuing messages received while away. This is really a UI function
232 * which is why the struct is here. */ 234 * which is why the struct is here. */
235
233 struct queued_message { 236 struct queued_message {
234 char name[80]; 237 char name[80];
235 char *message; 238 char *message;
236 time_t tm; 239 time_t tm;
237 struct gaim_connection *gc; 240 struct gaim_account *account;
238 int flags; 241 int flags;
239 int len; 242 int len;
240 }; 243 };
241 244
242 struct smiley_theme { 245 struct smiley_theme {