comparison libpurple/protocols/oscar/oscarcommon.h @ 15373:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children 0b6f337a46d5
comparison
equal deleted inserted replaced
15372:f79e0f4df793 15373:5fe8042783c1
1 /* gaim
2 *
3 * Gaim is the legal property of its developers, whose names are too numerous
4 * to list here. Please refer to the COPYRIGHT file distributed with this
5 * source distribution.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23 /* oscarcommon.h contains prototypes for the prpl functions used by libaim.c
24 * and libicq.c
25 */
26
27 #include "accountopt.h"
28 #include "internal.h"
29 #include "prpl.h"
30 #include "version.h"
31 #include "notify.h"
32
33 #define OSCAR_DEFAULT_LOGIN_SERVER "login.oscar.aol.com"
34 #define OSCAR_DEFAULT_LOGIN_PORT 5190
35 #ifndef _WIN32
36 #define OSCAR_DEFAULT_CUSTOM_ENCODING "ISO-8859-1"
37 #else
38 #define OSCAR_DEFAULT_CUSTOM_ENCODING oscar_get_locale_charset()
39 #endif
40 #define OSCAR_DEFAULT_AUTHORIZATION TRUE
41 #define OSCAR_DEFAULT_HIDE_IP TRUE
42 #define OSCAR_DEFAULT_WEB_AWARE FALSE
43 #define OSCAR_DEFAULT_ALWAYS_USE_RV_PROXY FALSE
44
45 #ifdef _WIN32
46 const char *oscar_get_locale_charset(void);
47 #endif
48 const char *oscar_list_icon_icq(GaimAccount *a, GaimBuddy *b);
49 const char *oscar_list_icon_aim(GaimAccount *a, GaimBuddy *b);
50 void oscar_list_emblems(GaimBuddy *b, const char **se, const char **sw, const char **nw, const char **ne);
51 char *oscar_status_text(GaimBuddy *b);
52 void oscar_tooltip_text(GaimBuddy *b, GaimNotifyUserInfo *user_info, gboolean full);
53 GList *oscar_status_types(GaimAccount *account);
54 GList *oscar_blist_node_menu(GaimBlistNode *node);
55 GList *oscar_chat_info(GaimConnection *gc);
56 GHashTable *oscar_chat_info_defaults(GaimConnection *gc, const char *chat_name);
57 void oscar_login(GaimAccount *account);
58 void oscar_close(GaimConnection *gc);
59 int oscar_send_im(GaimConnection *gc, const char *name, const char *message, GaimMessageFlags imflags);
60 void oscar_set_info(GaimConnection *gc, const char *rawinfo);
61 unsigned int oscar_send_typing(GaimConnection *gc, const char *name, GaimTypingState state);
62 void oscar_get_info(GaimConnection *gc, const char *name);
63 void oscar_set_status(GaimAccount *account, GaimStatus *status);
64 void oscar_set_idle(GaimConnection *gc, int time);
65 void oscar_change_passwd(GaimConnection *gc, const char *old, const char *new);
66 void oscar_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group);
67 void oscar_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group);
68 void oscar_add_permit(GaimConnection *gc, const char *who);
69 void oscar_add_deny(GaimConnection *gc, const char *who);
70 void oscar_rem_permit(GaimConnection *gc, const char *who);
71 void oscar_rem_deny(GaimConnection *gc, const char *who);
72 void oscar_set_permit_deny(GaimConnection *gc);
73 void oscar_join_chat(GaimConnection *gc, GHashTable *data);
74 char *oscar_get_chat_name(GHashTable *data);
75 void oscar_chat_invite(GaimConnection *gc, int id, const char *message, const char *name);
76 void oscar_chat_leave(GaimConnection *gc, int id);
77 int oscar_send_chat(GaimConnection *gc, int id, const char *message, GaimMessageFlags flags);
78 void oscar_keepalive(GaimConnection *gc);
79 void oscar_alias_buddy(GaimConnection *gc, const char *name, const char *alias);
80 void oscar_move_buddy(GaimConnection *gc, const char *name, const char *old_group, const char *new_group);
81 void oscar_rename_group(GaimConnection *gc, const char *old_name, GaimGroup *group, GList *moved_buddies);
82 void oscar_convo_closed(GaimConnection *gc, const char *who);
83 const char *oscar_normalize(const GaimAccount *account, const char *str);
84 void oscar_set_icon(GaimConnection *gc, const char *iconfile);
85 gboolean oscar_can_receive_file(GaimConnection *gc, const char *who);
86 void oscar_send_file(GaimConnection *gc, const char *who, const char *file);
87 GaimXfer *oscar_new_xfer(GaimConnection *gc, const char *who);
88 gboolean oscar_offline_message(const GaimBuddy *buddy);
89 GList *oscar_actions(GaimPlugin *plugin, gpointer context);