1#ifndef __WIN32TC_H__
2#define __WIN32TC_H__
3#ifdef TIDY_WIN32_MLANG_SUPPORT
4
5/* win32tc.h -- Interface to Win32 transcoding routines
6
7   (c) 1998-2006 (W3C) MIT, ERCIM, Keio University
8   See tidy.h for the copyright notice.
9
10   $Id: win32tc.h,v 1.3 2007/01/30 23:46:52 iccir Exp $
11*/
12
13uint TY_(Win32MLangGetCPFromName)(ctmbstr encoding);
14Bool TY_(Win32MLangInitInputTranscoder)(StreamIn * in, uint wincp);
15void TY_(Win32MLangUninitInputTranscoder)(StreamIn * in);
16int TY_(Win32MLangGetChar)(byte firstByte, StreamIn * in, uint * bytesRead);
17
18#endif /* TIDY_WIN32_MLANG_SUPPORT */
19#endif /* __WIN32TC_H__ */
20