Mercurial > pidgin
diff src/gaim.h @ 1391:d606da211acb
[gaim-migrate @ 1401]
Cancel is now Quit. Also set up the ability to right-click on edit list; but haven't implemented most of the functionality.
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Sun, 07 Jan 2001 19:55:08 +0000 |
| parents | 638af9a58e39 |
| children | bf041349b11e |
line wrap: on
line diff
--- a/src/gaim.h Fri Jan 05 21:14:35 2001 +0000 +++ b/src/gaim.h Sun Jan 07 19:55:08 2001 +0000 @@ -212,7 +212,12 @@ extern GList *callbacks; #endif +#define EDIT_GC 0 +#define EDIT_GROUP 1 +#define EDIT_BUDDY 2 + struct buddy { + int edittype; char name[80]; char show[80]; int present; @@ -222,6 +227,7 @@ int uc; gushort caps; /* woohoo! */ void *proto_data; /* what a hack */ + struct gaim_connection *gc; /* the connection it belongs to */ }; struct buddy_show { @@ -270,8 +276,10 @@ }; struct group { + int edittype; char name[80]; GSList *members; + struct gaim_connection *gc; /* the connection it belongs to */ }; struct chat_room {
