Mercurial > pidgin
annotate src/protocols/msn/userlist.h @ 9642:8901ef16f310
[gaim-migrate @ 10490]
Some changes that don't affect anything. Ethan might want to do
something with this function? I'm too lazy to read the gaim-devel
emails in detail.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 02 Aug 2004 03:33:00 +0000 |
| parents | ab6636c5a136 |
| children | 65b3156f9f48 |
| rev | line source |
|---|---|
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
1 /** |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
2 * @file userlist.h MSN user list support |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
3 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
4 * gaim |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
5 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
6 * Gaim is the legal property of its developers, whose names are too numerous |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
8 * source distribution. |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
9 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
10 * This program is free software; you can redistribute it and/or modify |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
11 * it under the terms of the GNU General Public License as published by |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
12 * the Free Software Foundation; either version 2 of the License, or |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
13 * (at your option) any later version. |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
14 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
15 * This program is distributed in the hope that it will be useful, |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
18 * GNU General Public License for more details. |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
19 * |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
20 * You should have received a copy of the GNU General Public License |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
21 * along with this program; if not, write to the Free Software |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
23 */ |
| 9193 | 24 #ifndef _MSN_USERLIST_H_ |
| 25 #define _MSN_USERLIST_H_ | |
| 26 | |
| 27 typedef struct _MsnUserList MsnUserList; | |
| 28 | |
| 29 #include "cmdproc.h" | |
| 30 #include "user.h" | |
| 31 #include "group.h" | |
| 32 | |
| 33 typedef enum | |
| 34 { | |
| 35 MSN_LIST_FL, | |
| 36 MSN_LIST_AL, | |
| 37 MSN_LIST_BL, | |
| 38 MSN_LIST_RL | |
| 39 | |
| 40 } MsnListId; | |
| 41 | |
| 42 typedef struct | |
| 43 { | |
| 44 char *who; | |
| 45 char *old_group_name; | |
| 46 | |
| 47 } MsnMoveBuddy; | |
| 48 | |
| 49 struct _MsnUserList | |
| 50 { | |
| 51 MsnSession *session; | |
| 52 | |
| 53 /* MsnUsers *users; */ | |
| 54 /* MsnGroups *groups; */ | |
| 55 | |
| 56 GList *users; | |
| 57 GList *groups; | |
| 58 | |
| 59 int fl_users_count; | |
| 60 | |
| 61 }; | |
| 62 | |
| 63 MsnListId msn_get_list_id(const char *list); | |
| 64 | |
| 65 void msn_got_add_user(MsnSession *session, MsnUser *user, | |
| 66 MsnListId list_id, int group_id); | |
| 67 void msn_got_rem_user(MsnSession *session, MsnUser *user, | |
| 68 MsnListId list_id, int group_id); | |
| 69 void msn_got_lst_user(MsnSession *session, MsnUser *user, | |
| 70 int list_op, GSList *group_ids); | |
| 71 | |
| 72 MsnUserList *msn_userlist_new(MsnSession *session); | |
| 73 void msn_userlist_destroy(MsnUserList *userlist); | |
| 74 void msn_userlist_add_user(MsnUserList *userlist, MsnUser *user); | |
| 75 void msn_userlist_remove_user(MsnUserList *userlist, MsnUser *user); | |
| 76 MsnUser *msn_userlist_find_user(MsnUserList *userlist, | |
| 77 const char *passport); | |
| 78 void msn_userlist_add_group(MsnUserList *userlist, MsnGroup *group); | |
| 79 void msn_userlist_remove_group(MsnUserList *userlist, MsnGroup *group); | |
| 80 MsnGroup *msn_userlist_find_group_with_id(MsnUserList *userlist, int id); | |
| 81 MsnGroup *msn_userlist_find_group_with_name(MsnUserList *userlist, | |
| 82 const char *name); | |
| 83 int msn_userlist_find_group_id(MsnUserList *userlist, | |
| 84 const char *group_name); | |
| 85 const char *msn_userlist_find_group_name(MsnUserList *userlist, | |
| 86 int group_id); | |
| 87 void msn_userlist_rename_group_id(MsnUserList *userlist, int group_id, | |
| 88 const char *new_name); | |
| 89 void msn_userlist_remove_group_id(MsnUserList *userlist, int group_id); | |
| 90 | |
| 91 void msn_userlist_rem_buddy(MsnUserList *userlist, const char *who, | |
| 92 int list_id, const char *group_name); | |
| 93 void msn_userlist_add_buddy(MsnUserList *userlist, const char *who, | |
| 94 int list_id, const char *group_name); | |
| 95 void msn_userlist_move_buddy(MsnUserList *userlist, const char *who, | |
| 96 const char *old_group_name, | |
| 97 const char *new_group_name); | |
| 98 | |
| 99 #endif /* _MSN_USERLIST_H_ */ |
