comparison src/multi.h @ 4349:0c68d402f59f

[gaim-migrate @ 4614] XML Blist Gaim stores all the buddy lists in one big happy file now. You can order the buddies however you want, and they'll stay ordered that way. We can also store some per-buddy information now, which will be cool. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 19 Jan 2003 22:16:52 +0000
parents cc2f780c0505
children 3196d9044a45
comparison
equal deleted inserted replaced
4348:922b66840a51 4349:0c68d402f59f
37 /* erg. */ 37 /* erg. */
38 char *checkbox; 38 char *checkbox;
39 39
40 /* all connections need an input watcher */ 40 /* all connections need an input watcher */
41 int inpa; 41 int inpa;
42
43 /* buddy list stuff. there is still a global groups for the buddy list, but
44 * we need to maintain our own set of buddies, and our own permit/deny lists */
45 GSList *groups;
46 GSList *permit;
47 GSList *deny;
48 int permdeny;
49 42
50 /* all connections need a list of chats, even if they don't have chat */ 43 /* all connections need a list of chats, even if they don't have chat */
51 GSList *buddy_chats; 44 GSList *buddy_chats;
52 45
53 /* each connection then can have its own protocol-specific data */ 46 /* each connection then can have its own protocol-specific data */