Depurple sipe_group_buddy
[siplcs.git] / src / api / core-depurple.h
blobe8e7fce3bdecddcbdaa9b832ca8467b510a40b7c
1 /**
2 * @file core-depurple.h
4 * pidgin-sipe
6 * Copyright (C) 2010-11 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * This is a temporary file for the core de-purple transition period
26 struct sipe_core_public;
28 void sipe_search_contact_with_cb(PurpleConnection *gc,
29 PurpleRequestFields *fields);
30 GList *sipe_buddy_menu(PurpleBuddy *buddy);
31 void sipe_purple_setup(struct sipe_core_public *sipe_public,
32 PurpleConnection *gc);
33 void sipe_get_info(PurpleConnection *gc, const char *username);
34 void sipe_set_status(PurpleAccount *account, PurpleStatus *status);
35 void sipe_set_idle(PurpleConnection *gc, int interval);
36 void sipe_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy,
37 PurpleGroup *group);
38 void sipe_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy,
39 PurpleGroup *group);
40 void sipe_group_buddy(PurpleConnection *gc, const char *who,
41 const char *old_group_name,
42 const char *new_group_name);
43 void sipe_rename_group(PurpleConnection *gc, const char *old_name,
44 PurpleGroup *group, GList *moved_buddies);
45 void sipe_convo_closed(PurpleConnection *gc, const char *who);
46 void sipe_remove_group(PurpleConnection *gc, PurpleGroup *group);
48 /* Convenience macros */
49 #define PURPLE_ACCOUNT_TO_SIPE_CORE_PRIVATE ((struct sipe_core_private *)account->gc->proto_data)
50 #define PURPLE_BUDDY_TO_SIPE_CORE_PRIVATE ((struct sipe_core_private *)buddy->account->gc->proto_data)
51 #define PURPLE_GC_TO_SIPE_CORE_PRIVATE ((struct sipe_core_private *)gc->proto_data)
52 #define PURPLE_GC_TO_SIPE_CORE_PUBLIC ((struct sipe_core_public *) gc->proto_data)