comparison src/core.h @ 2438:5cbe86a444d9

[gaim-migrate @ 2451] more updates to core. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 06 Oct 2001 00:10:29 +0000
parents b4f2a53c0ee5
children 8306c042bac7
comparison
equal deleted inserted replaced
2437:aa63f3ceea03 2438:5cbe86a444d9
92 extern GList *plugins; 92 extern GList *plugins;
93 extern GList *callbacks; 93 extern GList *callbacks;
94 #endif 94 #endif
95 95
96 struct buddy { 96 struct buddy {
97 int edittype; /* CUI: this is really a GUI function and we need to put this in ui.h */ 97 int edittype; /* XXX CUI: this is really a GUI function and we need to put this in ui.h */
98 char name[80]; 98 char name[80];
99 char show[80]; 99 char show[80];
100 int present; 100 int present;
101 int evil; 101 int evil;
102 time_t signon; 102 time_t signon;
106 void *proto_data; /* what a hack */ 106 void *proto_data; /* what a hack */
107 struct gaim_connection *gc; /* the connection it belongs to */ 107 struct gaim_connection *gc; /* the connection it belongs to */
108 }; 108 };
109 109
110 struct group { 110 struct group {
111 int edittype; /* CUI: this is really a GUI function and we need to put this in ui.h */ 111 int edittype; /* XXX CUI: this is really a GUI function and we need to put this in ui.h */
112 char name[80]; 112 char name[80];
113 GSList *members; 113 GSList *members;
114 struct gaim_connection *gc; /* the connection it belongs to */ 114 struct gaim_connection *gc; /* the connection it belongs to */
115 }; 115 };
116 116