comparison 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
comparison
equal deleted inserted replaced
3204:20769d05df16 3205:332df87cf3d6
36 #include "multi.h" 36 #include "multi.h"
37 37
38 /* Really user states are controlled by the PRPLs now. We just use this for event_away */ 38 /* Really user states are controlled by the PRPLs now. We just use this for event_away */
39 #define UC_UNAVAILABLE 1 39 #define UC_UNAVAILABLE 1
40 40
41 /* This is far too long to be practical, but MSN users are probably used to long aliases */
42 #define SELF_ALIAS_LEN 400
43
41 struct aim_user { 44 struct aim_user {
42 char username[64]; 45 char username[64];
46 char alias[SELF_ALIAS_LEN];
43 char password[32]; 47 char password[32];
44 char user_info[2048]; 48 char user_info[2048];
45 int options; 49 int options;
46 int protocol; 50 int protocol;
47 /* prpls can use this to save information about the user, 51 /* prpls can use this to save information about the user,