comparison src/gaim.h @ 1768:9aae465eeb6e

[gaim-migrate @ 1778] Start of the queueing stuff committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 28 Apr 2001 02:01:28 +0000
parents 5461acb8940a
children 896432d66303
comparison
equal deleted inserted replaced
1767:5461acb8940a 1768:9aae465eeb6e
264 264
265 char pouncer[80]; 265 char pouncer[80];
266 int protocol; 266 int protocol;
267 267
268 int options; 268 int options;
269 };
270
271 struct queued_message {
272 char name[80];
273 char *message;
274 time_t tm;
275 struct gaim_connection *gc;
269 }; 276 };
270 277
271 struct away_message { 278 struct away_message {
272 char name[80]; 279 char name[80];
273 char message[2048]; 280 char message[2048];
526 533
527 #define OPT_USR_AUTO 0x00000001 534 #define OPT_USR_AUTO 0x00000001
528 #define OPT_USR_KEEPALV 0x00000002 535 #define OPT_USR_KEEPALV 0x00000002
529 #define OPT_USR_REM_PASS 0x00000004 536 #define OPT_USR_REM_PASS 0x00000004
530 537
531 #define DEFAULT_INFO "Visit the GAIM website at <A HREF=\"http://www.marko.net/gaim\">http://www.marko.net/gaim</A>." 538 #define DEFAULT_INFO "Visit the GAIM website at <A HREF=\"http://gaim.sourceforge.net/\">http://gaim.sourceforge.net/</A>."
532 539
533 extern int report_idle; 540 extern int report_idle;
534 extern int web_browser; 541 extern int web_browser;
535 extern GList *aim_users; 542 extern GList *aim_users;
543 extern GSList *message_queue;
536 extern char sound_cmd[2048]; 544 extern char sound_cmd[2048];
537 extern char web_command[2048]; 545 extern char web_command[2048];
538 extern struct save_pos blist_pos; 546 extern struct save_pos blist_pos;
539 extern char latest_ver[25]; 547 extern char latest_ver[25];
540 548