diff src/core.h @ 2442:895e2469cb3a

[gaim-migrate @ 2455] aim_user is split. mod_user probably only needs to be in multi.c but eh. moved struct conversation to ui.h. still need to create struct buddy_chat for the prpls to use. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 06 Oct 2001 04:05:53 +0000
parents 8306c042bac7
children 7f2432a87376
line wrap: on
line diff
--- a/src/core.h	Sat Oct 06 02:49:18 2001 +0000
+++ b/src/core.h	Sat Oct 06 04:05:53 2001 +0000
@@ -41,6 +41,22 @@
 #define UC_NORMAL	8
 #define UC_UNAVAILABLE  16
 
+struct aim_user {
+	char username[64];
+	char password[32];
+	char user_info[2048];
+	int options;
+	int protocol;
+	/* prpls can use this to save information about the user,
+	 * like which server to connect to, etc */
+	char proto_opt[7][256];
+
+	/* buddy icon file */
+	char iconfile[256];
+
+	struct gaim_connection *gc;
+};
+	
 enum gaim_event {
 	event_signon = 0,
 	event_signoff,