Mercurial > pidgin
annotate libgaim/protocols/oscar/oscarcommon.h @ 15060:17e367667cbf
[gaim-migrate @ 17844]
On win32, use the current locale charset as the default fallback for oscar. Sean suggested this, it is based on the idea that you're likely to be talking people using a similar locale to you - so if they are using an ICQ client that just sends it in the current locale encoding, it will just work.
For the en_US locale, this becomes the "CP1252" encoding.
I also removed some duplicate definitions.
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Wed, 29 Nov 2006 05:27:49 +0000 |
parents | ad564b48dab0 |
children | b81e4e44b509 |
rev | line source |
---|---|
14968 | 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 | |
32 #define OSCAR_DEFAULT_LOGIN_SERVER "login.oscar.aol.com" | |
33 #define OSCAR_DEFAULT_LOGIN_PORT 5190 | |
15060
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
34 #ifndef _WIN32 |
14968 | 35 #define OSCAR_DEFAULT_CUSTOM_ENCODING "ISO-8859-1" |
15060
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
36 #else |
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
37 #define OSCAR_DEFAULT_CUSTOM_ENCODING oscar_get_locale_charset() |
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
38 #endif |
14968 | 39 #define OSCAR_DEFAULT_AUTHORIZATION TRUE |
40 #define OSCAR_DEFAULT_HIDE_IP TRUE | |
41 #define OSCAR_DEFAULT_WEB_AWARE FALSE | |
42 #define OSCAR_DEFAULT_ALWAYS_USE_RV_PROXY FALSE | |
43 | |
15060
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
44 #ifdef _WIN32 |
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
45 const char *oscar_get_locale_charset(void); |
17e367667cbf
[gaim-migrate @ 17844]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
14968
diff
changeset
|
46 #endif |
14968 | 47 const char *oscar_list_icon_icq(GaimAccount *a, GaimBuddy *b); |
48 const char *oscar_list_icon_aim(GaimAccount *a, GaimBuddy *b); | |
49 void oscar_list_emblems(GaimBuddy *b, const char **se, const char **sw, const char **nw, const char **ne); | |
50 char *oscar_status_text(GaimBuddy *b); | |
51 void oscar_tooltip_text(GaimBuddy *b, GString *str, gboolean full); | |
52 GList *oscar_status_types(GaimAccount *account); | |
53 GList *oscar_blist_node_menu(GaimBlistNode *node); | |
54 GList *oscar_chat_info(GaimConnection *gc); | |
55 GHashTable *oscar_chat_info_defaults(GaimConnection *gc, const char *chat_name); | |
56 void oscar_login(GaimAccount *account); | |
57 void oscar_close(GaimConnection *gc); | |
58 int oscar_send_im(GaimConnection *gc, const char *name, const char *message, GaimMessageFlags imflags); | |
59 void oscar_set_info(GaimConnection *gc, const char *rawinfo); | |
60 unsigned int oscar_send_typing(GaimConnection *gc, const char *name, GaimTypingState state); | |
61 void oscar_get_info(GaimConnection *gc, const char *name); | |
62 void oscar_set_status(GaimAccount *account, GaimStatus *status); | |
63 void oscar_set_idle(GaimConnection *gc, int time); | |
64 void oscar_change_passwd(GaimConnection *gc, const char *old, const char *new); | |
65 void oscar_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group); | |
66 void oscar_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group); | |
67 void oscar_add_permit(GaimConnection *gc, const char *who); | |
68 void oscar_add_deny(GaimConnection *gc, const char *who); | |
69 void oscar_rem_permit(GaimConnection *gc, const char *who); | |
70 void oscar_rem_deny(GaimConnection *gc, const char *who); | |
71 void oscar_set_permit_deny(GaimConnection *gc); | |
72 void oscar_join_chat(GaimConnection *gc, GHashTable *data); | |
73 char *oscar_get_chat_name(GHashTable *data); | |
74 void oscar_chat_invite(GaimConnection *gc, int id, const char *message, const char *name); | |
75 void oscar_chat_leave(GaimConnection *gc, int id); | |
76 int oscar_send_chat(GaimConnection *gc, int id, const char *message, GaimMessageFlags flags); | |
77 void oscar_keepalive(GaimConnection *gc); | |
78 void oscar_alias_buddy(GaimConnection *gc, const char *name, const char *alias); | |
79 void oscar_move_buddy(GaimConnection *gc, const char *name, const char *old_group, const char *new_group); | |
80 void oscar_rename_group(GaimConnection *gc, const char *old_name, GaimGroup *group, GList *moved_buddies); | |
81 void oscar_convo_closed(GaimConnection *gc, const char *who); | |
82 const char *oscar_normalize(const GaimAccount *account, const char *str); | |
83 void oscar_set_icon(GaimConnection *gc, const char *iconfile); | |
84 gboolean oscar_can_receive_file(GaimConnection *gc, const char *who); | |
85 void oscar_send_file(GaimConnection *gc, const char *who, const char *file); | |
86 GaimXfer *oscar_new_xfer(GaimConnection *gc, const char *who); | |
87 gboolean oscar_offline_message(const GaimBuddy *buddy); | |
88 GList *oscar_actions(GaimPlugin *plugin, gpointer context); |