diff 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
line wrap: on
line diff
--- a/src/gaim.h	Fri Apr 27 23:53:19 2001 +0000
+++ b/src/gaim.h	Sat Apr 28 02:01:28 2001 +0000
@@ -268,6 +268,13 @@
 	int options;
 };
 
+struct queued_message {
+	char name[80];
+	char *message;
+	time_t tm;
+	struct gaim_connection *gc;
+};
+
 struct away_message {
 	char name[80];
 	char message[2048];
@@ -528,11 +535,12 @@
 #define OPT_USR_KEEPALV		0x00000002
 #define OPT_USR_REM_PASS	0x00000004
 
-#define DEFAULT_INFO "Visit the GAIM website at <A HREF=\"http://www.marko.net/gaim\">http://www.marko.net/gaim</A>."
+#define DEFAULT_INFO "Visit the GAIM website at <A HREF=\"http://gaim.sourceforge.net/\">http://gaim.sourceforge.net/</A>."
 
 extern int report_idle;
 extern int web_browser;
 extern GList *aim_users;
+extern GSList *message_queue;
 extern char sound_cmd[2048];
 extern char web_command[2048];
 extern struct save_pos blist_pos;