diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-22 11:11:49 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-22 11:11:49 +0200 |
commit | 73cf7fd5f066d3c0720f58af840affa3e61bad12 (patch) | |
tree | ff33f75152bea4769375158b4538159b03f498bb /protocols/oscar/aim.h | |
parent | 619a68171055ca6ec460557176bd59817c09b736 (diff) |
Trying to fix charset issues with outgoing AIM chat messages.
Diffstat (limited to 'protocols/oscar/aim.h')
-rw-r--r-- | protocols/oscar/aim.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/protocols/oscar/aim.h b/protocols/oscar/aim.h index 24cd7730..93887103 100644 --- a/protocols/oscar/aim.h +++ b/protocols/oscar/aim.h @@ -727,8 +727,11 @@ struct aim_chat_exchangeinfo { char *lang2; }; -#define AIM_CHATFLAGS_NOREFLECT 0x0001 -#define AIM_CHATFLAGS_AWAY 0x0002 +#define AIM_CHATFLAGS_NOREFLECT 0x0001 +#define AIM_CHATFLAGS_AWAY 0x0002 +#define AIM_CHATFLAGS_UNICODE 0x0004 +#define AIM_CHATFLAGS_ISO_8859_1 0x0008 + int aim_chat_send_im(aim_session_t *sess, aim_conn_t *conn, guint16 flags, const char *msg, int msglen); int aim_chat_join(aim_session_t *sess, aim_conn_t *conn, guint16 exchange, const char *roomname, guint16 instance); int aim_chat_attachname(aim_conn_t *conn, guint16 exchange, const char *roomname, guint16 instance); |