diff src/core.h @ 3205:332df87cf3d6

[gaim-migrate @ 3222] Self-aliasing from the account editor. You can edit how your screenname shows up in sent messages without having yourself on your list. This is strictly client-side only--has no affect on what your buddies see. I'm thinking it might not be a bad idea to add the alias somewhere in the various select-account menus and lists. This could potentially fix the can't-tell-what-IRC-account-I'm-joining-channels-in problem, but I'm not sure the best way to do it right now--I'll do it tommorow. IM me if you have good ideas. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 04 May 2002 08:21:31 +0000
parents 1bd472b7f7a2
children 3b00d97d59aa
line wrap: on
line diff
--- a/src/core.h	Sat May 04 04:20:42 2002 +0000
+++ b/src/core.h	Sat May 04 08:21:31 2002 +0000
@@ -38,8 +38,12 @@
 /* Really user states are controlled by the PRPLs now. We just use this for event_away */
 #define UC_UNAVAILABLE  1
 
+/* This is far too long to be practical, but MSN users are probably used to long aliases */
+#define SELF_ALIAS_LEN 400
+
 struct aim_user {
 	char username[64];
+	char alias[SELF_ALIAS_LEN]; 
 	char password[32];
 	char user_info[2048];
 	int options;