#ifndef __AL_MEDIA_CODEPAGE_H__ #define __AL_MEDIA_CODEPAGE_H__ typedef enum _MediaCodePage_e { MCP_AUTO = 0, /* UTF8/16 with BOM */ MCP_ANSI, MCP_UTF16_BE, /* UTF16 BE without BOM */ MCP_UTF16_LE, /* UTF16 LE without BOM */ MCP_UTF8, /* UTF8 without BOM */ MCP_ISO8859_2, MCP_ISO8859_5, MCP_ISO8859_6, MCP_ISO8859_7, MCP_ISO8859_8, MCP_ISO8859_9, MCP_ISO8859_10, MCP_ISO8859_11, MCP_ISO8859_13, MCP_ISO8859_15, MCP_CP_1250, MCP_CP_1251, MCP_CP_1252, MCP_CP_1253, MCP_CP_1254, MCP_CP_1255, MCP_CP_1256, MCP_CP_1257, MCP_CP_874, #ifdef CONFIG_SUPPORT_SCHINESE_CP936 MCP_CP_936, #endif #ifdef CONFIG_SUPPORT_TCHINESE_CP950 MCP_CP_950, #endif MEDIA_CODEPAGE_MAX, } MediaCodePage_e; /* default ansi codepage */ //#define MCP_ANSI MCP_CP_1250 #endif