X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/bbe29f1f01eb723811cb8ea1dde00cc0be3a04d3..8f1612752a89ea821dbd63491aef858f7f7e5bef:/mac/macucs.c diff --git a/mac/macucs.c b/mac/macucs.c index 659f33b9..6d1581bd 100644 --- a/mac/macucs.c +++ b/mac/macucs.c @@ -1,4 +1,4 @@ -/* $Id: macucs.c,v 1.5 2003/01/14 19:57:36 ben Exp $ */ +/* $Id: macucs.c,v 1.7 2003/04/05 22:12:44 ben Exp $ */ #include #include @@ -109,3 +109,22 @@ void init_ucs(Session *s) s->ucsdata.unitab_xterm['_'] = ' '; } + +int decode_codepage(char *cp_name) +{ + + return 0; +} + +char const *cp_enumerate (int index) +{ + + if (index == 0) return "ISO/IEC 8859-1"; + return NULL; +} + +char const *cp_name(int codepage) +{ + + return "ISO/IEC 8859-1"; +}