core cleanup: separate code for sipe_backend_account_status_and_note()
[siplcs.git] / src / api / core-depurple.h
blob59520994ca15ad063f6c4d8a5c622fb173ddd31b
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 GList *sipe_buddy_menu(PurpleBuddy *buddy);
29 void sipe_purple_setup(struct sipe_core_public *sipe_public,
30 PurpleConnection *gc);
31 void sipe_get_info(PurpleConnection *gc, const char *username);
32 void sipe_set_status(PurpleAccount *account, PurpleStatus *status);
33 void sipe_set_idle(PurpleConnection *gc, int interval);
34 void sipe_convo_closed(PurpleConnection *gc, const char *who);
36 /* Convenience macros */
37 #define PURPLE_ACCOUNT_TO_SIPE_CORE_PRIVATE ((struct sipe_core_private *)account->gc->proto_data)
38 #define PURPLE_BUDDY_TO_SIPE_CORE_PRIVATE ((struct sipe_core_private *)buddy->account->gc->proto_data)
39 #define PURPLE_GC_TO_SIPE_CORE_PRIVATE ((struct sipe_core_private *)gc->proto_data)
40 #define PURPLE_GC_TO_SIPE_CORE_PUBLIC ((struct sipe_core_public *) gc->proto_data)