diff options
Diffstat (limited to 'WWW/Library/Implementation/UCMap.h')
-rw-r--r-- | WWW/Library/Implementation/UCMap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WWW/Library/Implementation/UCMap.h b/WWW/Library/Implementation/UCMap.h index e1a802cc..6f9e74bc 100644 --- a/WWW/Library/Implementation/UCMap.h +++ b/WWW/Library/Implementation/UCMap.h @@ -1,5 +1,5 @@ /* - * $LynxId: UCMap.h,v 1.23 2009/01/01 02:03:25 tom Exp $ + * $LynxId: UCMap.h,v 1.26 2010/09/25 15:18:32 tom Exp $ */ #ifndef UCMAP_H #define UCMAP_H @@ -32,15 +32,15 @@ extern "C" { UCode_t unicode, int charset_out, int chk_single_flag); - extern int UCTransChar(char ch_in, + extern int UCTransChar(int ch_in, int charset_in, int charset_out); - extern int UCReverseTransChar(char ch_out, + extern int UCReverseTransChar(int ch_out, int charset_in, int charset_out); extern int UCTransCharStr(char *outbuf, int buflen, - char ch_in, + int ch_in, int charset_in, int charset_out, int chk_single_flag); @@ -49,7 +49,7 @@ extern "C" { int buflen, int charset_in); #endif - extern UCode_t UCTransToUni(char ch_in, + extern UCode_t UCTransToUni(int ch_in, int charset_in); extern int UCGetRawUniMode_byLYhndl(int i); extern int UCGetLYhndl_byMIME(const char *p); /* returns -1 if name not recognized */ |