mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
Fixed the printing and charset combo boxes in Unix PuTTY. (The
former by simply removing it; the latter by adding an enumeration function to libcharset.) This has had slight `const' repercussions on cp_name() and cp_enumerate() which might break the Mac build. [originally from svn r3064]
This commit is contained in:
@ -136,6 +136,14 @@ int charset_from_xenc(const char *name);
|
||||
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.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user