X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/8ef2b1965c784ecd96623508a05f4fa8f5a27e0c..e9b5ee69b1e19e83aa52f0b462a6eb2b9946e559:/charset/charset.h diff --git a/charset/charset.h b/charset/charset.h index 7dd038bb..5f83eddb 100644 --- a/charset/charset.h +++ b/charset/charset.h @@ -32,6 +32,7 @@ typedef enum { CS_ISO8859_16, CS_CP437, CS_CP850, + CS_CP866, CS_CP1250, CS_CP1251, CS_CP1252, @@ -137,6 +138,14 @@ const char *charset_to_mimeenc(int charset); int charset_from_mimeenc(const char *name); /* + * Convert our own encoding names to and from our charset + * identifiers. + */ +const char *charset_to_localenc(int charset); +int charset_from_localenc(const char *name); +int charset_localenc_nth(int n); + +/* * Convert Mac OS script/region/font to our charset identifiers. */ int charset_from_macenc(int script, int region, int sysvers,