Mercurial > pidgin.yaz
view src/win32/untar.h @ 8250:b248c1f4efbd
[gaim-migrate @ 8973]
1) Minor changes to the network listen code again. Tim, let me know
if you have any other suggestions.
2) Changed how charsets are handled in oscar a tad bit. I think this
should guarantee that Gaim doesn't crash when people send funky
messages, or have funky away messages or really anything that is
using a charset that isn't utf8, iso-8859-1, ucs-2be, or ascii.
Ethan, this should fix the problem with that person's away message.
Although, the message itself still looks kinda funky to me. The
encoding is Windows-31J, which is apparently a valid iconv encoding?
You would know more than I.
3) Fix the following crash:
1. IM yourself a message on AIM
2. Do NOT begin to type a second message, but instead hit CTRL+up
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 13 Feb 2004 05:37:12 +0000 |
parents | a1f9725f4816 |
children |
line wrap: on
line source
/* * untar.h * * Author: Herman Bloggs <hermanator12002@yahoo.com> * Date: April, 2003 * Description: untar.c header */ #ifndef _UNTAR_H_ #define _UNTAR_H_ typedef enum _untar_opt { UNTAR_LISTING = (1 << 0), UNTAR_QUIET = (1 << 1), UNTAR_VERBOSE = (1 << 2), UNTAR_FORCE = (1 << 3), UNTAR_ABSPATH = (1 << 4), UNTAR_CONVERT = (1 << 5) } untar_opt; int untar(const char *filename, const char *destdir, untar_opt options); #endif