-

Dependents:   RSALB_hbridge_helloworld RSALB_lobster WavPlayer_test AudioCODEC_HelloWorld ... more

Fork of FatFileSystemCpp by Igor Skochinsky

Committer:
p07gbar
Date:
Wed Sep 19 11:03:35 2012 +0000
Revision:
2:e869ee8f3c3d
Parent:
0:6ceefe1c53e4
-

Who changed what in which revision?

UserRevisionLine numberNew contents of line
p07gbar 2:e869ee8f3c3d 1 /*------------------------------------------------------------------------*/
p07gbar 2:e869ee8f3c3d 2 /* Unicode - Local code bidirectional converter (C)ChaN, 2009 */
p07gbar 2:e869ee8f3c3d 3 /* (SBCS code pages) */
p07gbar 2:e869ee8f3c3d 4 /*------------------------------------------------------------------------*/
p07gbar 2:e869ee8f3c3d 5 /* 437 U.S. (OEM)
p07gbar 2:e869ee8f3c3d 6 / 720 Arabic (OEM)
p07gbar 2:e869ee8f3c3d 7 / 1256 Arabic (Windows)
p07gbar 2:e869ee8f3c3d 8 / 737 Greek (OEM)
p07gbar 2:e869ee8f3c3d 9 / 1253 Greek (Windows)
p07gbar 2:e869ee8f3c3d 10 / 1250 Central Europe (Windows)
p07gbar 2:e869ee8f3c3d 11 / 775 Baltic (OEM)
p07gbar 2:e869ee8f3c3d 12 / 1257 Baltic (Windows)
p07gbar 2:e869ee8f3c3d 13 / 850 Multilingual Latin 1 (OEM)
p07gbar 2:e869ee8f3c3d 14 / 852 Latin 2 (OEM)
p07gbar 2:e869ee8f3c3d 15 / 1252 Latin 1 (Windows)
p07gbar 2:e869ee8f3c3d 16 / 855 Cyrillic (OEM)
p07gbar 2:e869ee8f3c3d 17 / 1251 Cyrillic (Windows)
p07gbar 2:e869ee8f3c3d 18 / 866 Russian (OEM)
p07gbar 2:e869ee8f3c3d 19 / 857 Turkish (OEM)
p07gbar 2:e869ee8f3c3d 20 / 1254 Turkish (Windows)
p07gbar 2:e869ee8f3c3d 21 / 858 Multilingual Latin 1 + Euro (OEM)
p07gbar 2:e869ee8f3c3d 22 / 862 Hebrew (OEM)
p07gbar 2:e869ee8f3c3d 23 / 1255 Hebrew (Windows)
p07gbar 2:e869ee8f3c3d 24 / 874 Thai (OEM, Windows)
p07gbar 2:e869ee8f3c3d 25 / 1258 Vietnam (OEM, Windows)
p07gbar 2:e869ee8f3c3d 26 */
p07gbar 2:e869ee8f3c3d 27
p07gbar 2:e869ee8f3c3d 28 #include "../ff.h"
p07gbar 2:e869ee8f3c3d 29
p07gbar 2:e869ee8f3c3d 30
p07gbar 2:e869ee8f3c3d 31 #if _CODE_PAGE == 437
p07gbar 2:e869ee8f3c3d 32 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 33 static
p07gbar 2:e869ee8f3c3d 34 const WCHAR Tbl[] = { /* CP437(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 35 0x00C7, 0x00FC, 0x00E9, 0x00E2, 0x00E4, 0x00E0, 0x00E5, 0x00E7,
p07gbar 2:e869ee8f3c3d 36 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x00EC, 0x00C4, 0x00C5,
p07gbar 2:e869ee8f3c3d 37 0x00C9, 0x00E6, 0x00C6, 0x00F4, 0x00F6, 0x00F2, 0x00FB, 0x00F9,
p07gbar 2:e869ee8f3c3d 38 0x00FF, 0x00D6, 0x00DC, 0x00A2, 0x00A3, 0x00A5, 0x20A7, 0x0192,
p07gbar 2:e869ee8f3c3d 39 0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x00F1, 0x00D1, 0x00AA, 0x00BA,
p07gbar 2:e869ee8f3c3d 40 0x00BF, 0x2310, 0x00AC, 0x00BD, 0x00BC, 0x00A1, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 41 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,
p07gbar 2:e869ee8f3c3d 42 0x2555, 0x2563, 0x2551, 0x2557, 0x255D, 0x255C, 0x255B, 0x2510,
p07gbar 2:e869ee8f3c3d 43 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x255E, 0x255F,
p07gbar 2:e869ee8f3c3d 44 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x2567,
p07gbar 2:e869ee8f3c3d 45 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256B,
p07gbar 2:e869ee8f3c3d 46 0x256A, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
p07gbar 2:e869ee8f3c3d 47 0x03B1, 0x00DF, 0x0393, 0x03C0, 0x03A3, 0x03C3, 0x00B5, 0x03C4,
p07gbar 2:e869ee8f3c3d 48 0x03A6, 0x0398, 0x03A9, 0x03B4, 0x221E, 0x03C6, 0x03B5, 0x2229,
p07gbar 2:e869ee8f3c3d 49 0x2261, 0x00B1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00F7, 0x2248,
p07gbar 2:e869ee8f3c3d 50 0x00B0, 0x2219, 0x00B7, 0x221A, 0x207F, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 51 };
p07gbar 2:e869ee8f3c3d 52
p07gbar 2:e869ee8f3c3d 53 #elif _CODE_PAGE == 720
p07gbar 2:e869ee8f3c3d 54 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 55 static
p07gbar 2:e869ee8f3c3d 56 const WCHAR Tbl[] = { /* CP720(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 57 0x0000, 0x0000, 0x00E9, 0x00E2, 0x0000, 0x00E0, 0x0000, 0x00E7,
p07gbar 2:e869ee8f3c3d 58 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 59 0x0000, 0x0651, 0x0652, 0x00F4, 0x00A4, 0x0640, 0x00FB, 0x00F9,
p07gbar 2:e869ee8f3c3d 60 0x0621, 0x0622, 0x0623, 0x0624, 0x00A3, 0x0625, 0x0626, 0x0627,
p07gbar 2:e869ee8f3c3d 61 0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, 0x062F,
p07gbar 2:e869ee8f3c3d 62 0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 63 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,
p07gbar 2:e869ee8f3c3d 64 0x2555, 0x2563, 0x2551, 0x2557, 0x255D, 0x255C, 0x255B, 0x2510,
p07gbar 2:e869ee8f3c3d 65 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x255E, 0x255F,
p07gbar 2:e869ee8f3c3d 66 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x2567,
p07gbar 2:e869ee8f3c3d 67 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256B,
p07gbar 2:e869ee8f3c3d 68 0x256A, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
p07gbar 2:e869ee8f3c3d 69 0x0636, 0x0637, 0x0638, 0x0639, 0x063A, 0x0641, 0x00B5, 0x0642,
p07gbar 2:e869ee8f3c3d 70 0x0643, 0x0644, 0x0645, 0x0646, 0x0647, 0x0648, 0x0649, 0x064A,
p07gbar 2:e869ee8f3c3d 71 0x2261, 0x064B, 0x064C, 0x064D, 0x064E, 0x064F, 0xO650, 0x2248,
p07gbar 2:e869ee8f3c3d 72 0x00B0, 0x2219, 0x00B7, 0x221A, 0x207F, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 73 };
p07gbar 2:e869ee8f3c3d 74
p07gbar 2:e869ee8f3c3d 75 #elif _CODE_PAGE == 737
p07gbar 2:e869ee8f3c3d 76 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 77 static
p07gbar 2:e869ee8f3c3d 78 const WCHAR Tbl[] = { /* CP737(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 79 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397, 0x0398,
p07gbar 2:e869ee8f3c3d 80 0x0399, 0x039A, 0x039B, 0x039C, 0x039D, 0x039E, 0x039F, 0x03A0,
p07gbar 2:e869ee8f3c3d 81 0x03A1, 0x03A3, 0x03A4, 0x03A5, 0x03A6, 0x03A7, 0x03A8, 0x03A9,
p07gbar 2:e869ee8f3c3d 82 0x03B1, 0x03B2, 0x03B3, 0x03B4, 0x03B5, 0x03B6, 0x03B7, 0x03B8,
p07gbar 2:e869ee8f3c3d 83 0x03B9, 0x03BA, 0x03BB, 0x03BC, 0x03BD, 0x03BE, 0x03BF, 0x03C0,
p07gbar 2:e869ee8f3c3d 84 0x03C1, 0x03C3, 0x03C2, 0x03C4, 0x03C5, 0x03C6, 0x03C7, 0x03C8,
p07gbar 2:e869ee8f3c3d 85 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,
p07gbar 2:e869ee8f3c3d 86 0x2555, 0x2563, 0x2551, 0x2557, 0x255D, 0x255C, 0x255B, 0x2510,
p07gbar 2:e869ee8f3c3d 87 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x255E, 0x255F,
p07gbar 2:e869ee8f3c3d 88 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x2567,
p07gbar 2:e869ee8f3c3d 89 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256B,
p07gbar 2:e869ee8f3c3d 90 0x256A, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
p07gbar 2:e869ee8f3c3d 91 0x03C9, 0x03AC, 0x03AD, 0x03AE, 0x03CA, 0x03AF, 0x03CC, 0x03CD,
p07gbar 2:e869ee8f3c3d 92 0x03CB, 0x03CE, 0x0386, 0x0388, 0x0389, 0x038A, 0x038C, 0x038E,
p07gbar 2:e869ee8f3c3d 93 0x038F, 0x00B1, 0x2265, 0x2264, 0x03AA, 0x03AB, 0x00F7, 0x2248,
p07gbar 2:e869ee8f3c3d 94 0x00B0, 0x2219, 0x00B7, 0x221A, 0x207F, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 95 };
p07gbar 2:e869ee8f3c3d 96
p07gbar 2:e869ee8f3c3d 97 #elif _CODE_PAGE == 775
p07gbar 2:e869ee8f3c3d 98 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 99 static
p07gbar 2:e869ee8f3c3d 100 const WCHAR Tbl[] = { /* CP775(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 101 0x0106, 0x00FC, 0x00E9, 0x0101, 0x00E4, 0x0123, 0x00E5, 0x0107,
p07gbar 2:e869ee8f3c3d 102 0x0142, 0x0113, 0x0156, 0x0157, 0x012B, 0x0179, 0x00C4, 0x00C5,
p07gbar 2:e869ee8f3c3d 103 0x00C9, 0x00E6, 0x00C6, 0x014D, 0x00F6, 0x0122, 0x00A2, 0x015A,
p07gbar 2:e869ee8f3c3d 104 0x015B, 0x00D6, 0x00DC, 0x00F8, 0x00A3, 0x00D8, 0x00D7, 0x00A4,
p07gbar 2:e869ee8f3c3d 105 0x0100, 0x012A, 0x00F3, 0x017B, 0x017C, 0x017A, 0x201D, 0x00A6,
p07gbar 2:e869ee8f3c3d 106 0x00A9, 0x00AE, 0x00AC, 0x00BD, 0x00BC, 0x0141, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 107 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0104, 0x010C, 0x0118,
p07gbar 2:e869ee8f3c3d 108 0x0116, 0x2563, 0x2551, 0x2557, 0x255D, 0x012E, 0x0160, 0x2510,
p07gbar 2:e869ee8f3c3d 109 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x0172, 0x016A,
p07gbar 2:e869ee8f3c3d 110 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x017D,
p07gbar 2:e869ee8f3c3d 111 0x0105, 0x010D, 0x0119, 0x0117, 0x012F, 0x0161, 0x0173, 0x016B,
p07gbar 2:e869ee8f3c3d 112 0x017E, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
p07gbar 2:e869ee8f3c3d 113 0x00D3, 0x00DF, 0x014C, 0x0143, 0x00F5, 0x00D5, 0x00B5, 0x0144,
p07gbar 2:e869ee8f3c3d 114 0x0136, 0x0137, 0x013B, 0x013C, 0x0146, 0x0112, 0x0145, 0x2019,
p07gbar 2:e869ee8f3c3d 115 0x00AD, 0x00B1, 0x201C, 0x00BE, 0x00B6, 0x00A7, 0x00F7, 0x201E,
p07gbar 2:e869ee8f3c3d 116 0x00B0, 0x2219, 0x00B7, 0x00B9, 0x00B3, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 117 };
p07gbar 2:e869ee8f3c3d 118
p07gbar 2:e869ee8f3c3d 119 #elif _CODE_PAGE == 850
p07gbar 2:e869ee8f3c3d 120 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 121 static
p07gbar 2:e869ee8f3c3d 122 const WCHAR Tbl[] = { /* CP850(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 123 0x00C7, 0x00FC, 0x00E9, 0x00E2, 0x00E4, 0x00E0, 0x00E5, 0x00E7,
p07gbar 2:e869ee8f3c3d 124 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x00EC, 0x00C4, 0x00C5,
p07gbar 2:e869ee8f3c3d 125 0x00C9, 0x00E6, 0x00C6, 0x00F4, 0x00F6, 0x00F2, 0x00FB, 0x00F9,
p07gbar 2:e869ee8f3c3d 126 0x00FF, 0x00D6, 0x00DC, 0x00F8, 0x00A3, 0x00D8, 0x00D7, 0x0192,
p07gbar 2:e869ee8f3c3d 127 0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x00F1, 0x00D1, 0x00AA, 0x00BA,
p07gbar 2:e869ee8f3c3d 128 0x00BF, 0x00AE, 0x00AC, 0x00BD, 0x00BC, 0x00A1, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 129 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00C1, 0x00C2, 0x00C0,
p07gbar 2:e869ee8f3c3d 130 0x00A9, 0x2563, 0x2551, 0x2557, 0x255D, 0x00A2, 0x00A5, 0x2510,
p07gbar 2:e869ee8f3c3d 131 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x00E3, 0x00C3,
p07gbar 2:e869ee8f3c3d 132 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x00A4,
p07gbar 2:e869ee8f3c3d 133 0x00F0, 0x00D0, 0x00CA, 0x00CB, 0x00C8, 0x0131, 0x00CD, 0x00CE,
p07gbar 2:e869ee8f3c3d 134 0x00CF, 0x2518, 0x250C, 0x2588, 0x2584, 0x00A6, 0x00CC, 0x2580,
p07gbar 2:e869ee8f3c3d 135 0x00D3, 0x00DF, 0x00D4, 0x00D2, 0x00F5, 0x00D5, 0x00B5, 0x00FE,
p07gbar 2:e869ee8f3c3d 136 0x00DE, 0x00DA, 0x00DB, 0x00D9, 0x00FD, 0x00DD, 0x00AF, 0x00B4,
p07gbar 2:e869ee8f3c3d 137 0x00AD, 0x00B1, 0x2017, 0x00BE, 0x00B6, 0x00A7, 0x00F7, 0x00B8,
p07gbar 2:e869ee8f3c3d 138 0x00B0, 0x00A8, 0x00B7, 0x00B9, 0x00B3, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 139 };
p07gbar 2:e869ee8f3c3d 140
p07gbar 2:e869ee8f3c3d 141 #elif _CODE_PAGE == 852
p07gbar 2:e869ee8f3c3d 142 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 143 static
p07gbar 2:e869ee8f3c3d 144 const WCHAR Tbl[] = { /* CP852(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 145 0x00C7, 0x00FC, 0x00E9, 0x00E2, 0x00E4, 0x016F, 0x0107, 0x00E7,
p07gbar 2:e869ee8f3c3d 146 0x0142, 0x00EB, 0x0150, 0x0151, 0x00EE, 0x0179, 0x00C4, 0x0106,
p07gbar 2:e869ee8f3c3d 147 0x00C9, 0x0139, 0x013A, 0x00F4, 0x00F6, 0x013D, 0x013E, 0x015A,
p07gbar 2:e869ee8f3c3d 148 0x015B, 0x00D6, 0x00DC, 0x0164, 0x0165, 0x0141, 0x00D7, 0x010D,
p07gbar 2:e869ee8f3c3d 149 0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x0104, 0x0105, 0x017D, 0x017E,
p07gbar 2:e869ee8f3c3d 150 0x0118, 0x0119, 0x00AC, 0x017A, 0x010C, 0x015F, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 151 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00C1, 0x00C2, 0x011A,
p07gbar 2:e869ee8f3c3d 152 0x015E, 0x2563, 0x2551, 0x2557, 0x255D, 0x017B, 0x017C, 0x2510,
p07gbar 2:e869ee8f3c3d 153 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x0102, 0x0103,
p07gbar 2:e869ee8f3c3d 154 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x00A4,
p07gbar 2:e869ee8f3c3d 155 0x0111, 0x0110, 0x010E, 0x00CB, 0x010F, 0x0147, 0x00CD, 0x00CE,
p07gbar 2:e869ee8f3c3d 156 0x011B, 0x2518, 0x250C, 0x2588, 0x2584, 0x0162, 0x016E, 0x2580,
p07gbar 2:e869ee8f3c3d 157 0x00D3, 0x00DF, 0x00D4, 0x0143, 0x0144, 0x0148, 0x0160, 0x0161,
p07gbar 2:e869ee8f3c3d 158 0x0154, 0x00DA, 0x0155, 0x0170, 0x00FD, 0x00DD, 0x0163, 0x00B4,
p07gbar 2:e869ee8f3c3d 159 0x00AD, 0x02DD, 0x02DB, 0x02C7, 0x02D8, 0x00A7, 0x00F7, 0x00B8,
p07gbar 2:e869ee8f3c3d 160 0x00B0, 0x00A8, 0x02D9, 0x0171, 0x0158, 0x0159, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 161 };
p07gbar 2:e869ee8f3c3d 162
p07gbar 2:e869ee8f3c3d 163 #elif _CODE_PAGE == 855
p07gbar 2:e869ee8f3c3d 164 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 165 static
p07gbar 2:e869ee8f3c3d 166 const WCHAR Tbl[] = { /* CP855(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 167 0x0452, 0x0402, 0x0453, 0x0403, 0x0451, 0x0401, 0x0454, 0x0404,
p07gbar 2:e869ee8f3c3d 168 0x0455, 0x0405, 0x0456, 0x0406, 0x0457, 0x0407, 0x0458, 0x0408,
p07gbar 2:e869ee8f3c3d 169 0x0459, 0x0409, 0x045A, 0x040A, 0x045B, 0x040B, 0x045C, 0x040C,
p07gbar 2:e869ee8f3c3d 170 0x045E, 0x040E, 0x045F, 0x040F, 0x044E, 0x042E, 0x044A, 0x042A,
p07gbar 2:e869ee8f3c3d 171 0x0430, 0x0410, 0x0431, 0x0411, 0x0446, 0x0426, 0x0434, 0x0414,
p07gbar 2:e869ee8f3c3d 172 0x0435, 0x0415, 0x0444, 0x0424, 0x0433, 0x0413, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 173 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0445, 0x0425, 0x0438,
p07gbar 2:e869ee8f3c3d 174 0x0418, 0x2563, 0x2551, 0x2557, 0x255D, 0x0439, 0x0419, 0x2510,
p07gbar 2:e869ee8f3c3d 175 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x043A, 0x041A,
p07gbar 2:e869ee8f3c3d 176 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x00A4,
p07gbar 2:e869ee8f3c3d 177 0x043B, 0x041B, 0x043C, 0x041C, 0x043D, 0x041D, 0x043E, 0x041E,
p07gbar 2:e869ee8f3c3d 178 0x043F, 0x2518, 0x250C, 0x2588, 0x2584, 0x041F, 0x044F, 0x2580,
p07gbar 2:e869ee8f3c3d 179 0x042F, 0x0440, 0x0420, 0x0441, 0x0421, 0x0442, 0x0422, 0x0443,
p07gbar 2:e869ee8f3c3d 180 0x0423, 0x0436, 0x0416, 0x0432, 0x0412, 0x044C, 0x042C, 0x2116,
p07gbar 2:e869ee8f3c3d 181 0x00AD, 0x044B, 0x042B, 0x0437, 0x0417, 0x0448, 0x0428, 0x044D,
p07gbar 2:e869ee8f3c3d 182 0x042D, 0x0449, 0x0429, 0x0447, 0x0427, 0x00A7, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 183 };
p07gbar 2:e869ee8f3c3d 184
p07gbar 2:e869ee8f3c3d 185 #elif _CODE_PAGE == 857
p07gbar 2:e869ee8f3c3d 186 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 187 static
p07gbar 2:e869ee8f3c3d 188 const WCHAR Tbl[] = { /* CP857(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 189 0x00C7, 0x00FC, 0x00E9, 0x00E2, 0x00E4, 0x00E0, 0x00E5, 0x00E7,
p07gbar 2:e869ee8f3c3d 190 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x0131, 0x00C4, 0x00C5,
p07gbar 2:e869ee8f3c3d 191 0x00C9, 0x00E6, 0x00C6, 0x00F4, 0x00F6, 0x00F2, 0x00FB, 0x00F9,
p07gbar 2:e869ee8f3c3d 192 0x0130, 0x00D6, 0x00DC, 0x00F8, 0x00A3, 0x00D8, 0x015E, 0x015F,
p07gbar 2:e869ee8f3c3d 193 0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x00F1, 0x00D1, 0x011E, 0x011F,
p07gbar 2:e869ee8f3c3d 194 0x00BF, 0x00AE, 0x00AC, 0x00BD, 0x00BC, 0x00A1, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 195 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00C1, 0x00C2, 0x00C0,
p07gbar 2:e869ee8f3c3d 196 0x00A9, 0x2563, 0x2551, 0x2557, 0x255D, 0x00A2, 0x00A5, 0x2510,
p07gbar 2:e869ee8f3c3d 197 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x00E3, 0x00C3,
p07gbar 2:e869ee8f3c3d 198 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x00A4,
p07gbar 2:e869ee8f3c3d 199 0x00BA, 0x00AA, 0x00CA, 0x00CB, 0x00C8, 0x0000, 0x00CD, 0x00CE,
p07gbar 2:e869ee8f3c3d 200 0x00CF, 0x2518, 0x250C, 0x2588, 0x2584, 0x00A6, 0x00CC, 0x2580,
p07gbar 2:e869ee8f3c3d 201 0x00D3, 0x00DF, 0x00D4, 0x00D2, 0x00F5, 0x00D5, 0x00B5, 0x0000,
p07gbar 2:e869ee8f3c3d 202 0x00D7, 0x00DA, 0x00DB, 0x00D9, 0x00EC, 0x00FF, 0x00AF, 0x00B4,
p07gbar 2:e869ee8f3c3d 203 0x00AD, 0x00B1, 0x0000, 0x00BE, 0x00B6, 0x00A7, 0x00F7, 0x00B8,
p07gbar 2:e869ee8f3c3d 204 0x00B0, 0x00A8, 0x00B7, 0x00B9, 0x00B3, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 205 };
p07gbar 2:e869ee8f3c3d 206
p07gbar 2:e869ee8f3c3d 207 #elif _CODE_PAGE == 858
p07gbar 2:e869ee8f3c3d 208 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 209 static
p07gbar 2:e869ee8f3c3d 210 const WCHAR Tbl[] = { /* CP858(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 211 0x00C7, 0x00FC, 0x00E9, 0x00E2, 0x00E4, 0x00E0, 0x00E5, 0x00E7,
p07gbar 2:e869ee8f3c3d 212 0x00EA, 0x00EB, 0x00E8, 0x00EF, 0x00EE, 0x00EC, 0x00C4, 0x00C5,
p07gbar 2:e869ee8f3c3d 213 0x00C9, 0x00E6, 0x00C6, 0x00F4, 0x00F6, 0x00F2, 0x00FB, 0x00F9,
p07gbar 2:e869ee8f3c3d 214 0x00FF, 0x00D6, 0x00DC, 0x00F8, 0x00A3, 0x00D8, 0x00D7, 0x0192,
p07gbar 2:e869ee8f3c3d 215 0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x00F1, 0x00D1, 0x00AA, 0x00BA,
p07gbar 2:e869ee8f3c3d 216 0x00BF, 0x00AE, 0x00AC, 0x00BD, 0x00BC, 0x00A1, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 217 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00C1, 0x00C2, 0x00C0,
p07gbar 2:e869ee8f3c3d 218 0x00A9, 0x2563, 0x2551, 0x2557, 0x2550, 0x00A2, 0x00A5, 0x2510,
p07gbar 2:e869ee8f3c3d 219 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x00E3, 0x00C3,
p07gbar 2:e869ee8f3c3d 220 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x00A4,
p07gbar 2:e869ee8f3c3d 221 0x00F0, 0x00D0, 0x00CA, 0x00CB, 0x00C8, 0x20AC, 0x00CD, 0x00CE,
p07gbar 2:e869ee8f3c3d 222 0x00CF, 0x2518, 0x250C, 0x2588, 0x2584, 0x00C6, 0x00CC, 0x2580,
p07gbar 2:e869ee8f3c3d 223 0x00D3, 0x00DF, 0x00D4, 0x00D2, 0x00F5, 0x00D5, 0x00B5, 0x00FE,
p07gbar 2:e869ee8f3c3d 224 0x00DE, 0x00DA, 0x00DB, 0x00D9, 0x00FD, 0x00DD, 0x00AF, 0x00B4,
p07gbar 2:e869ee8f3c3d 225 0x00AD, 0x00B1, 0x2017, 0x00BE, 0x00B6, 0x00A7, 0x00F7, 0x00B8,
p07gbar 2:e869ee8f3c3d 226 0x00B0, 0x00A8, 0x00B7, 0x00B9, 0x00B3, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 227 };
p07gbar 2:e869ee8f3c3d 228
p07gbar 2:e869ee8f3c3d 229 #elif _CODE_PAGE == 862
p07gbar 2:e869ee8f3c3d 230 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 231 static
p07gbar 2:e869ee8f3c3d 232 const WCHAR Tbl[] = { /* CP862(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 233 0x05D0, 0x05D1, 0x05D2, 0x05D3, 0x05D4, 0x05D5, 0x05D6, 0x05D7,
p07gbar 2:e869ee8f3c3d 234 0x05D8, 0x05D9, 0x05DA, 0x05DB, 0x05DC, 0x05DD, 0x05DE, 0x05DF,
p07gbar 2:e869ee8f3c3d 235 0x05E0, 0x05E1, 0x05E2, 0x05E3, 0x05E4, 0x05E5, 0x05E6, 0x05E7,
p07gbar 2:e869ee8f3c3d 236 0x05E8, 0x05E9, 0x05EA, 0x00A2, 0x00A3, 0x00A5, 0x20A7, 0x0192,
p07gbar 2:e869ee8f3c3d 237 0x00E1, 0x00ED, 0x00F3, 0x00FA, 0x00F1, 0x00D1, 0x00AA, 0x00BA,
p07gbar 2:e869ee8f3c3d 238 0x00BF, 0x2310, 0x00AC, 0x00BD, 0x00BC, 0x00A1, 0x00AB, 0x00BB,
p07gbar 2:e869ee8f3c3d 239 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,
p07gbar 2:e869ee8f3c3d 240 0x2555, 0x2563, 0x2551, 0x2557, 0x255D, 0x255C, 0x255B, 0x2510,
p07gbar 2:e869ee8f3c3d 241 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x255E, 0x255F,
p07gbar 2:e869ee8f3c3d 242 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x2567,
p07gbar 2:e869ee8f3c3d 243 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256B,
p07gbar 2:e869ee8f3c3d 244 0x256A, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
p07gbar 2:e869ee8f3c3d 245 0x03B1, 0x00DF, 0x0393, 0x03C0, 0x03A3, 0x03C3, 0x00B5, 0x03C4,
p07gbar 2:e869ee8f3c3d 246 0x03A6, 0x0398, 0x03A9, 0x03B4, 0x221E, 0x03C6, 0x03B5, 0x2229,
p07gbar 2:e869ee8f3c3d 247 0x2261, 0x00B1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00F7, 0x2248,
p07gbar 2:e869ee8f3c3d 248 0x00B0, 0x2219, 0x00B7, 0x221A, 0x207F, 0x00B2, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 249 };
p07gbar 2:e869ee8f3c3d 250
p07gbar 2:e869ee8f3c3d 251 #elif _CODE_PAGE == 866
p07gbar 2:e869ee8f3c3d 252 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 253 static
p07gbar 2:e869ee8f3c3d 254 const WCHAR Tbl[] = { /* CP866(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 255 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,
p07gbar 2:e869ee8f3c3d 256 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F,
p07gbar 2:e869ee8f3c3d 257 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,
p07gbar 2:e869ee8f3c3d 258 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F,
p07gbar 2:e869ee8f3c3d 259 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,
p07gbar 2:e869ee8f3c3d 260 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F,
p07gbar 2:e869ee8f3c3d 261 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556,
p07gbar 2:e869ee8f3c3d 262 0x2555, 0x2563, 0x2551, 0x2557, 0x255D, 0x255C, 0x255B, 0x2510,
p07gbar 2:e869ee8f3c3d 263 0x2514, 0x2534, 0x252C, 0x251C, 0x2500, 0x253C, 0x255E, 0x255F,
p07gbar 2:e869ee8f3c3d 264 0x255A, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256C, 0x2567,
p07gbar 2:e869ee8f3c3d 265 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256B,
p07gbar 2:e869ee8f3c3d 266 0x256A, 0x2518, 0x250C, 0x2588, 0x2584, 0x258C, 0x2590, 0x2580,
p07gbar 2:e869ee8f3c3d 267 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,
p07gbar 2:e869ee8f3c3d 268 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F,
p07gbar 2:e869ee8f3c3d 269 0x0401, 0x0451, 0x0404, 0x0454, 0x0407, 0x0457, 0x040E, 0x045E,
p07gbar 2:e869ee8f3c3d 270 0x00B0, 0x2219, 0x00B7, 0x221A, 0x2116, 0x00A4, 0x25A0, 0x00A0
p07gbar 2:e869ee8f3c3d 271 };
p07gbar 2:e869ee8f3c3d 272
p07gbar 2:e869ee8f3c3d 273 #elif _CODE_PAGE == 874
p07gbar 2:e869ee8f3c3d 274 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 275 static
p07gbar 2:e869ee8f3c3d 276 const WCHAR Tbl[] = { /* CP874(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 277 0x20AC, 0x0000, 0x0000, 0x0000, 0x0000, 0x2026, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 278 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 279 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 280 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 281 0x00A0, 0x0E01, 0x0E02, 0x0E03, 0x0E04, 0x0E05, 0x0E06, 0x0E07,
p07gbar 2:e869ee8f3c3d 282 0x0E08, 0x0E09, 0x0E0A, 0x0E0B, 0x0E0C, 0x0E0D, 0x0E0E, 0x0E0F,
p07gbar 2:e869ee8f3c3d 283 0x0E10, 0x0E11, 0x0E12, 0x0E13, 0x0E14, 0x0E15, 0x0E16, 0x0E17,
p07gbar 2:e869ee8f3c3d 284 0x0E18, 0x0E19, 0x0E1A, 0x0E1B, 0x0E1C, 0x0E1D, 0x0E1E, 0x0E1F,
p07gbar 2:e869ee8f3c3d 285 0x0E20, 0x0E21, 0x0E22, 0x0E23, 0x0E24, 0x0E25, 0x0E26, 0x0E27,
p07gbar 2:e869ee8f3c3d 286 0x0E28, 0x0E29, 0x0E2A, 0x0E2B, 0x0E2C, 0x0E2D, 0x0E2E, 0x0E2F,
p07gbar 2:e869ee8f3c3d 287 0x0E30, 0x0E31, 0x0E32, 0x0E33, 0x0E34, 0x0E35, 0x0E36, 0x0E37,
p07gbar 2:e869ee8f3c3d 288 0x0E38, 0x0E39, 0x0E3A, 0x0000, 0x0000, 0x0000, 0x0000, 0x0E3F,
p07gbar 2:e869ee8f3c3d 289 0x0E40, 0x0E41, 0x0E42, 0x0E43, 0x0E44, 0x0E45, 0x0E46, 0x0E47,
p07gbar 2:e869ee8f3c3d 290 0x0E48, 0x0E49, 0x0E4A, 0x0E4B, 0x0E4C, 0x0E4D, 0x0E4E, 0x0E4F,
p07gbar 2:e869ee8f3c3d 291 0x0E50, 0x0E51, 0x0E52, 0x0E53, 0x0E54, 0x0E55, 0x0E56, 0x0E57,
p07gbar 2:e869ee8f3c3d 292 0x0E58, 0x0E59, 0x0E5A, 0x0E5B, 0x0000, 0x0000, 0x0000, 0x0000
p07gbar 2:e869ee8f3c3d 293 };
p07gbar 2:e869ee8f3c3d 294
p07gbar 2:e869ee8f3c3d 295 #elif _CODE_PAGE == 1250
p07gbar 2:e869ee8f3c3d 296 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 297 static
p07gbar 2:e869ee8f3c3d 298 const WCHAR Tbl[] = { /* CP1250(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 299 0x20AC, 0x0000, 0x201A, 0x0000, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 300 0x0000, 0x2030, 0x0160, 0x2039, 0x015A, 0x0164, 0x017D, 0x0179,
p07gbar 2:e869ee8f3c3d 301 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 302 0x0000, 0x2122, 0x0161, 0x203A, 0x015B, 0x0165, 0x017E, 0x017A,
p07gbar 2:e869ee8f3c3d 303 0x00A0, 0x02C7, 0x02D8, 0x0141, 0x00A4, 0x0104, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 304 0x00A8, 0x00A9, 0x015E, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x017B,
p07gbar 2:e869ee8f3c3d 305 0x00B0, 0x00B1, 0x02DB, 0x0142, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 306 0x00B8, 0x0105, 0x015F, 0x00BB, 0x013D, 0x02DD, 0x013E, 0x017C,
p07gbar 2:e869ee8f3c3d 307 0x0154, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x0139, 0x0106, 0x00C7,
p07gbar 2:e869ee8f3c3d 308 0x010C, 0x00C9, 0x0118, 0x00CB, 0x011A, 0x00CD, 0x00CE, 0x010E,
p07gbar 2:e869ee8f3c3d 309 0x0110, 0x0143, 0x0147, 0x00D3, 0x00D4, 0x0150, 0x00D6, 0x00D7,
p07gbar 2:e869ee8f3c3d 310 0x0158, 0x016E, 0x00DA, 0x0170, 0x00DC, 0x00DD, 0x0162, 0x00DF,
p07gbar 2:e869ee8f3c3d 311 0x0155, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x013A, 0x0107, 0x00E7,
p07gbar 2:e869ee8f3c3d 312 0x010D, 0x00E9, 0x0119, 0x00EB, 0x011B, 0x00ED, 0x00EE, 0x010F,
p07gbar 2:e869ee8f3c3d 313 0x0111, 0x0144, 0x0148, 0x00F3, 0x00F4, 0x0151, 0x00F6, 0x00F7,
p07gbar 2:e869ee8f3c3d 314 0x0159, 0x016F, 0x00FA, 0x0171, 0x00FC, 0x00FD, 0x0163, 0x02D9
p07gbar 2:e869ee8f3c3d 315 };
p07gbar 2:e869ee8f3c3d 316
p07gbar 2:e869ee8f3c3d 317 #elif _CODE_PAGE == 1251
p07gbar 2:e869ee8f3c3d 318 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 319 static
p07gbar 2:e869ee8f3c3d 320 const WCHAR Tbl[] = { /* CP1251(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 321 0x0402, 0x0403, 0x201A, 0x0453, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 322 0x20AC, 0x2030, 0x0409, 0x2039, 0x040A, 0x040C, 0x040B, 0x040F,
p07gbar 2:e869ee8f3c3d 323 0x0452, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 324 0x0000, 0x2111, 0x0459, 0x203A, 0x045A, 0x045C, 0x045B, 0x045F,
p07gbar 2:e869ee8f3c3d 325 0x00A0, 0x040E, 0x045E, 0x0408, 0x00A4, 0x0490, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 326 0x0401, 0x00A9, 0x0404, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x0407,
p07gbar 2:e869ee8f3c3d 327 0x00B0, 0x00B1, 0x0406, 0x0456, 0x0491, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 328 0x0451, 0x2116, 0x0454, 0x00BB, 0x0458, 0x0405, 0x0455, 0x0457,
p07gbar 2:e869ee8f3c3d 329 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,
p07gbar 2:e869ee8f3c3d 330 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F,
p07gbar 2:e869ee8f3c3d 331 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,
p07gbar 2:e869ee8f3c3d 332 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F,
p07gbar 2:e869ee8f3c3d 333 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,
p07gbar 2:e869ee8f3c3d 334 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F,
p07gbar 2:e869ee8f3c3d 335 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,
p07gbar 2:e869ee8f3c3d 336 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F
p07gbar 2:e869ee8f3c3d 337 };
p07gbar 2:e869ee8f3c3d 338
p07gbar 2:e869ee8f3c3d 339 #elif _CODE_PAGE == 1252
p07gbar 2:e869ee8f3c3d 340 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 341 static
p07gbar 2:e869ee8f3c3d 342 const WCHAR Tbl[] = { /* CP1252(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 343 0x20AC, 0x0000, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 344 0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x0000, 0x017D, 0x0000,
p07gbar 2:e869ee8f3c3d 345 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 346 0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x0000, 0x017E, 0x0178,
p07gbar 2:e869ee8f3c3d 347 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 348 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
p07gbar 2:e869ee8f3c3d 349 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 350 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
p07gbar 2:e869ee8f3c3d 351 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
p07gbar 2:e869ee8f3c3d 352 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
p07gbar 2:e869ee8f3c3d 353 0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7,
p07gbar 2:e869ee8f3c3d 354 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DE, 0x00DF,
p07gbar 2:e869ee8f3c3d 355 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
p07gbar 2:e869ee8f3c3d 356 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
p07gbar 2:e869ee8f3c3d 357 0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7,
p07gbar 2:e869ee8f3c3d 358 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x00FF
p07gbar 2:e869ee8f3c3d 359 };
p07gbar 2:e869ee8f3c3d 360
p07gbar 2:e869ee8f3c3d 361 #elif _CODE_PAGE == 1253
p07gbar 2:e869ee8f3c3d 362 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 363 static
p07gbar 2:e869ee8f3c3d 364 const WCHAR Tbl[] = { /* CP1253(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 365 0x20AC, 0x0000, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 366 0x0000, 0x2030, 0x0000, 0x2039, 0x000C, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 367 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 368 0x0000, 0x2122, 0x0000, 0x203A, 0x0000, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 369 0x00A0, 0x0385, 0x0386, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 370 0x00A8, 0x00A9, 0x0000, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x2015,
p07gbar 2:e869ee8f3c3d 371 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x0384, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 372 0x0388, 0x0389, 0x038A, 0x00BB, 0x038C, 0x00BD, 0x038E, 0x038F,
p07gbar 2:e869ee8f3c3d 373 0x0390, 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396, 0x0397,
p07gbar 2:e869ee8f3c3d 374 0x0398, 0x0399, 0x039A, 0x039B, 0x039C, 0x039D, 0x039E, 0x039F,
p07gbar 2:e869ee8f3c3d 375 0x03A0, 0x03A1, 0x0000, 0x03A3, 0x03A4, 0x03A5, 0x03A6, 0x03A7,
p07gbar 2:e869ee8f3c3d 376 0x03A8, 0x03A9, 0x03AA, 0x03AD, 0x03AC, 0x03AD, 0x03AE, 0x03AF,
p07gbar 2:e869ee8f3c3d 377 0x03B0, 0x03B1, 0x03B2, 0x03B3, 0x03B4, 0x03B5, 0x03B6, 0x03B7,
p07gbar 2:e869ee8f3c3d 378 0x03B8, 0x03B9, 0x03BA, 0x03BB, 0x03BC, 0x03BD, 0x03BE, 0x03BF,
p07gbar 2:e869ee8f3c3d 379 0x03C0, 0x03C1, 0x03C2, 0x03C3, 0x03C4, 0x03C5, 0x03C6, 0x03C7,
p07gbar 2:e869ee8f3c3d 380 0x03C8, 0x03C9, 0x03CA, 0x03CB, 0x03CC, 0x03CD, 0x03CE, 0x0000
p07gbar 2:e869ee8f3c3d 381 };
p07gbar 2:e869ee8f3c3d 382
p07gbar 2:e869ee8f3c3d 383 #elif _CODE_PAGE == 1254
p07gbar 2:e869ee8f3c3d 384 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 385 static
p07gbar 2:e869ee8f3c3d 386 const WCHAR Tbl[] = { /* CP1254(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 387 0x20AC, 0x0000, 0x210A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 388 0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 389 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 390 0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x0000, 0x0000, 0x0178,
p07gbar 2:e869ee8f3c3d 391 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 392 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
p07gbar 2:e869ee8f3c3d 393 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 394 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
p07gbar 2:e869ee8f3c3d 395 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
p07gbar 2:e869ee8f3c3d 396 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,
p07gbar 2:e869ee8f3c3d 397 0x011E, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7,
p07gbar 2:e869ee8f3c3d 398 0x00D8, 0x00D9, 0x00DA, 0x00BD, 0x00DC, 0x0130, 0x015E, 0x00DF,
p07gbar 2:e869ee8f3c3d 399 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
p07gbar 2:e869ee8f3c3d 400 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,
p07gbar 2:e869ee8f3c3d 401 0x011F, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7,
p07gbar 2:e869ee8f3c3d 402 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x0131, 0x015F, 0x00FF
p07gbar 2:e869ee8f3c3d 403 };
p07gbar 2:e869ee8f3c3d 404
p07gbar 2:e869ee8f3c3d 405 #elif _CODE_PAGE == 1255
p07gbar 2:e869ee8f3c3d 406 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 407 static
p07gbar 2:e869ee8f3c3d 408 const WCHAR Tbl[] = { /* CP1255(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 409 0x20AC, 0x0000, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 410 0x02C6, 0x2030, 0x0000, 0x2039, 0x0000, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 411 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 412 0x02DC, 0x2122, 0x0000, 0x203A, 0x0000, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 413 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 414 0x00A8, 0x00A9, 0x00D7, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
p07gbar 2:e869ee8f3c3d 415 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 416 0x00B8, 0x00B9, 0x00F7, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
p07gbar 2:e869ee8f3c3d 417 0x05B0, 0x05B1, 0x05B2, 0x05B3, 0x05B4, 0x05B5, 0x05B6, 0x05B7,
p07gbar 2:e869ee8f3c3d 418 0x05B8, 0x05B9, 0x0000, 0x05BB, 0x05BC, 0x05BD, 0x05BE, 0x05BF,
p07gbar 2:e869ee8f3c3d 419 0x05C0, 0x05C1, 0x05C2, 0x05C3, 0x05F0, 0x05F1, 0x05F2, 0x05F3,
p07gbar 2:e869ee8f3c3d 420 0x05F4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 421 0x05D0, 0x05D1, 0x05D2, 0x05D3, 0x05D4, 0x05D5, 0x05D6, 0x05D7,
p07gbar 2:e869ee8f3c3d 422 0x05D8, 0x05D9, 0x05DA, 0x05DB, 0x05DC, 0x05DD, 0x05DE, 0x05DF,
p07gbar 2:e869ee8f3c3d 423 0x05E0, 0x05E1, 0x05E2, 0x05E3, 0x05E4, 0x05E5, 0x05E6, 0x05E7,
p07gbar 2:e869ee8f3c3d 424 0x05E8, 0x05E9, 0x05EA, 0x0000, 0x0000, 0x200E, 0x200F, 0x0000
p07gbar 2:e869ee8f3c3d 425 };
p07gbar 2:e869ee8f3c3d 426
p07gbar 2:e869ee8f3c3d 427 #elif _CODE_PAGE == 1256
p07gbar 2:e869ee8f3c3d 428 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 429 static
p07gbar 2:e869ee8f3c3d 430 const WCHAR Tbl[] = { /* CP1256(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 431 0x20AC, 0x067E, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 432 0x02C6, 0x2030, 0x0679, 0x2039, 0x0152, 0x0686, 0x0698, 0x0688,
p07gbar 2:e869ee8f3c3d 433 0x06AF, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 434 0x06A9, 0x2122, 0x0691, 0x203A, 0x0153, 0x200C, 0x200D, 0x06BA,
p07gbar 2:e869ee8f3c3d 435 0x00A0, 0x060C, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 436 0x00A8, 0x00A9, 0x06BE, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
p07gbar 2:e869ee8f3c3d 437 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 438 0x00B8, 0x00B9, 0x061B, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x061F,
p07gbar 2:e869ee8f3c3d 439 0x06C1, 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627,
p07gbar 2:e869ee8f3c3d 440 0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, 0x062F,
p07gbar 2:e869ee8f3c3d 441 0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, 0x0636, 0x00D7,
p07gbar 2:e869ee8f3c3d 442 0x0637, 0x0638, 0x0639, 0x063A, 0x0640, 0x0640, 0x0642, 0x0643,
p07gbar 2:e869ee8f3c3d 443 0x00E0, 0x0644, 0x00E2, 0x0645, 0x0646, 0x0647, 0x0648, 0x00E7,
p07gbar 2:e869ee8f3c3d 444 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x0649, 0x064A, 0x00EE, 0x00EF,
p07gbar 2:e869ee8f3c3d 445 0x064B, 0x064C, 0x064D, 0x064E, 0x00F4, 0x064F, 0x0650, 0x00F7,
p07gbar 2:e869ee8f3c3d 446 0x0651, 0x00F9, 0x0652, 0x00FB, 0x00FC, 0x200E, 0x200F, 0x06D2
p07gbar 2:e869ee8f3c3d 447 }
p07gbar 2:e869ee8f3c3d 448
p07gbar 2:e869ee8f3c3d 449 #elif _CODE_PAGE == 1257
p07gbar 2:e869ee8f3c3d 450 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 451 static
p07gbar 2:e869ee8f3c3d 452 const WCHAR Tbl[] = { /* CP1257(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 453 0x20AC, 0x0000, 0x201A, 0x0000, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 454 0x0000, 0x2030, 0x0000, 0x2039, 0x0000, 0x00A8, 0x02C7, 0x00B8,
p07gbar 2:e869ee8f3c3d 455 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 456 0x0000, 0x2122, 0x0000, 0x203A, 0x0000, 0x00AF, 0x02DB, 0x0000,
p07gbar 2:e869ee8f3c3d 457 0x00A0, 0x0000, 0x00A2, 0x00A3, 0x00A4, 0x0000, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 458 0x00D8, 0x00A9, 0x0156, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
p07gbar 2:e869ee8f3c3d 459 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 460 0x00B8, 0x00B9, 0x0157, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00E6,
p07gbar 2:e869ee8f3c3d 461 0x0104, 0x012E, 0x0100, 0x0106, 0x00C4, 0x00C5, 0x0118, 0x0112,
p07gbar 2:e869ee8f3c3d 462 0x010C, 0x00C9, 0x0179, 0x0116, 0x0122, 0x0136, 0x012A, 0x013B,
p07gbar 2:e869ee8f3c3d 463 0x0160, 0x0143, 0x0145, 0x00D3, 0x014C, 0x00D5, 0x00D6, 0x00D7,
p07gbar 2:e869ee8f3c3d 464 0x0172, 0x0141, 0x015A, 0x016A, 0x00DC, 0x017B, 0x017D, 0x00DF,
p07gbar 2:e869ee8f3c3d 465 0x0105, 0x012F, 0x0101, 0x0107, 0x00E4, 0x00E5, 0x0119, 0x0113,
p07gbar 2:e869ee8f3c3d 466 0x010D, 0x00E9, 0x017A, 0x0117, 0x0123, 0x0137, 0x012B, 0x013C,
p07gbar 2:e869ee8f3c3d 467 0x0161, 0x0144, 0x0146, 0x00F3, 0x014D, 0x00F5, 0x00F6, 0x00F7,
p07gbar 2:e869ee8f3c3d 468 0x0173, 0x014E, 0x015B, 0x016B, 0x00FC, 0x017C, 0x017E, 0x02D9
p07gbar 2:e869ee8f3c3d 469 };
p07gbar 2:e869ee8f3c3d 470
p07gbar 2:e869ee8f3c3d 471 #elif _CODE_PAGE == 1258
p07gbar 2:e869ee8f3c3d 472 #define _TBLDEF 1
p07gbar 2:e869ee8f3c3d 473 static
p07gbar 2:e869ee8f3c3d 474 const WCHAR Tbl[] = { /* CP1258(0x80-0xFF) to Unicode conversion table */
p07gbar 2:e869ee8f3c3d 475 0x20AC, 0x0000, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
p07gbar 2:e869ee8f3c3d 476 0x02C6, 0x2030, 0x0000, 0x2039, 0x0152, 0x0000, 0x0000, 0x0000,
p07gbar 2:e869ee8f3c3d 477 0x0000, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
p07gbar 2:e869ee8f3c3d 478 0x02DC, 0x2122, 0x0000, 0x203A, 0x0153, 0x0000, 0x0000, 0x0178,
p07gbar 2:e869ee8f3c3d 479 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
p07gbar 2:e869ee8f3c3d 480 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
p07gbar 2:e869ee8f3c3d 481 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
p07gbar 2:e869ee8f3c3d 482 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
p07gbar 2:e869ee8f3c3d 483 0x00C0, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
p07gbar 2:e869ee8f3c3d 484 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x0300, 0x00CD, 0x00CE, 0x00CF,
p07gbar 2:e869ee8f3c3d 485 0x0110, 0x00D1, 0x0309, 0x00D3, 0x00D4, 0x01A0, 0x00D6, 0x00D7,
p07gbar 2:e869ee8f3c3d 486 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x01AF, 0x0303, 0x00DF,
p07gbar 2:e869ee8f3c3d 487 0x00E0, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
p07gbar 2:e869ee8f3c3d 488 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x0301, 0x00ED, 0x00EE, 0x00EF,
p07gbar 2:e869ee8f3c3d 489 0x0111, 0x00F1, 0x0323, 0x00F3, 0x00F4, 0x01A1, 0x00F6, 0x00F7,
p07gbar 2:e869ee8f3c3d 490 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x01B0, 0x20AB, 0x00FF
p07gbar 2:e869ee8f3c3d 491 };
p07gbar 2:e869ee8f3c3d 492
p07gbar 2:e869ee8f3c3d 493 #endif
p07gbar 2:e869ee8f3c3d 494
p07gbar 2:e869ee8f3c3d 495
p07gbar 2:e869ee8f3c3d 496 #if !_TBLDEF || !_USE_LFN
p07gbar 2:e869ee8f3c3d 497 #error This file is not needed in current configuration. Remove from the project.
p07gbar 2:e869ee8f3c3d 498 #endif
p07gbar 2:e869ee8f3c3d 499
p07gbar 2:e869ee8f3c3d 500
p07gbar 2:e869ee8f3c3d 501 WCHAR ff_convert ( /* Converted character, Returns zero on error */
p07gbar 2:e869ee8f3c3d 502 WCHAR src, /* Character code to be converted */
p07gbar 2:e869ee8f3c3d 503 UINT dir /* 0: Unicode to OEMCP, 1: OEMCP to Unicode */
p07gbar 2:e869ee8f3c3d 504 )
p07gbar 2:e869ee8f3c3d 505 {
p07gbar 2:e869ee8f3c3d 506 WCHAR c;
p07gbar 2:e869ee8f3c3d 507
p07gbar 2:e869ee8f3c3d 508
p07gbar 2:e869ee8f3c3d 509 if (src < 0x80) { /* ASCII */
p07gbar 2:e869ee8f3c3d 510 c = src;
p07gbar 2:e869ee8f3c3d 511
p07gbar 2:e869ee8f3c3d 512 } else {
p07gbar 2:e869ee8f3c3d 513 if (dir) { /* OEMCP to Unicode */
p07gbar 2:e869ee8f3c3d 514 c = (src >= 0x100) ? 0 : Tbl[src - 0x80];
p07gbar 2:e869ee8f3c3d 515
p07gbar 2:e869ee8f3c3d 516 } else { /* Unicode to OEMCP */
p07gbar 2:e869ee8f3c3d 517 for (c = 0; c < 0x80; c++) {
p07gbar 2:e869ee8f3c3d 518 if (src == Tbl[c]) break;
p07gbar 2:e869ee8f3c3d 519 }
p07gbar 2:e869ee8f3c3d 520 c = (c + 0x80) & 0xFF;
p07gbar 2:e869ee8f3c3d 521 }
p07gbar 2:e869ee8f3c3d 522 }
p07gbar 2:e869ee8f3c3d 523
p07gbar 2:e869ee8f3c3d 524 return c;
p07gbar 2:e869ee8f3c3d 525 }
p07gbar 2:e869ee8f3c3d 526
p07gbar 2:e869ee8f3c3d 527
p07gbar 2:e869ee8f3c3d 528 WCHAR ff_wtoupper ( /* Upper converted character */
p07gbar 2:e869ee8f3c3d 529 WCHAR chr /* Input character */
p07gbar 2:e869ee8f3c3d 530 )
p07gbar 2:e869ee8f3c3d 531 {
p07gbar 2:e869ee8f3c3d 532 static const WCHAR tbl_lower[] = { 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0xA1, 0x00A2, 0x00A3, 0x00A5, 0x00AC, 0x00AF, 0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF, 0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0x0FF, 0x101, 0x103, 0x105, 0x107, 0x109, 0x10B, 0x10D, 0x10F, 0x111, 0x113, 0x115, 0x117, 0x119, 0x11B, 0x11D, 0x11F, 0x121, 0x123, 0x125, 0x127, 0x129, 0x12B, 0x12D, 0x12F, 0x131, 0x133, 0x135, 0x137, 0x13A, 0x13C, 0x13E, 0x140, 0x142, 0x144, 0x146, 0x148, 0x14B, 0x14D, 0x14F, 0x151, 0x153, 0x155, 0x157, 0x159, 0x15B, 0x15D, 0x15F, 0x161, 0x163, 0x165, 0x167, 0x169, 0x16B, 0x16D, 0x16F, 0x171, 0x173, 0x175, 0x177, 0x17A, 0x17C, 0x17E, 0x192, 0x3B1, 0x3B2, 0x3B3, 0x3B4, 0x3B5, 0x3B6, 0x3B7, 0x3B8, 0x3B9, 0x3BA, 0x3BB, 0x3BC, 0x3BD, 0x3BE, 0x3BF, 0x3C0, 0x3C1, 0x3C3, 0x3C4, 0x3C5, 0x3C6, 0x3C7, 0x3C8, 0x3C9, 0x3CA, 0x430, 0x431, 0x432, 0x433, 0x434, 0x435, 0x436, 0x437, 0x438, 0x439, 0x43A, 0x43B, 0x43C, 0x43D, 0x43E, 0x43F, 0x440, 0x441, 0x442, 0x443, 0x444, 0x445, 0x446, 0x447, 0x448, 0x449, 0x44A, 0x44B, 0x44C, 0x44D, 0x44E, 0x44F, 0x451, 0x452, 0x453, 0x454, 0x455, 0x456, 0x457, 0x458, 0x459, 0x45A, 0x45B, 0x45C, 0x45E, 0x45F, 0x2170, 0x2171, 0x2172, 0x2173, 0x2174, 0x2175, 0x2176, 0x2177, 0x2178, 0x2179, 0x217A, 0x217B, 0x217C, 0x217D, 0x217E, 0x217F, 0xFF41, 0xFF42, 0xFF43, 0xFF44, 0xFF45, 0xFF46, 0xFF47, 0xFF48, 0xFF49, 0xFF4A, 0xFF4B, 0xFF4C, 0xFF4D, 0xFF4E, 0xFF4F, 0xFF50, 0xFF51, 0xFF52, 0xFF53, 0xFF54, 0xFF55, 0xFF56, 0xFF57, 0xFF58, 0xFF59, 0xFF5A, 0 };
p07gbar 2:e869ee8f3c3d 533 static const WCHAR tbl_upper[] = { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x21, 0xFFE0, 0xFFE1, 0xFFE5, 0xFFE2, 0xFFE3, 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF, 0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0x178, 0x100, 0x102, 0x104, 0x106, 0x108, 0x10A, 0x10C, 0x10E, 0x110, 0x112, 0x114, 0x116, 0x118, 0x11A, 0x11C, 0x11E, 0x120, 0x122, 0x124, 0x126, 0x128, 0x12A, 0x12C, 0x12E, 0x130, 0x132, 0x134, 0x136, 0x139, 0x13B, 0x13D, 0x13F, 0x141, 0x143, 0x145, 0x147, 0x14A, 0x14C, 0x14E, 0x150, 0x152, 0x154, 0x156, 0x158, 0x15A, 0x15C, 0x15E, 0x160, 0x162, 0x164, 0x166, 0x168, 0x16A, 0x16C, 0x16E, 0x170, 0x172, 0x174, 0x176, 0x179, 0x17B, 0x17D, 0x191, 0x391, 0x392, 0x393, 0x394, 0x395, 0x396, 0x397, 0x398, 0x399, 0x39A, 0x39B, 0x39C, 0x39D, 0x39E, 0x39F, 0x3A0, 0x3A1, 0x3A3, 0x3A4, 0x3A5, 0x3A6, 0x3A7, 0x3A8, 0x3A9, 0x3AA, 0x410, 0x411, 0x412, 0x413, 0x414, 0x415, 0x416, 0x417, 0x418, 0x419, 0x41A, 0x41B, 0x41C, 0x41D, 0x41E, 0x41F, 0x420, 0x421, 0x422, 0x423, 0x424, 0x425, 0x426, 0x427, 0x428, 0x429, 0x42A, 0x42B, 0x42C, 0x42D, 0x42E, 0x42F, 0x401, 0x402, 0x403, 0x404, 0x405, 0x406, 0x407, 0x408, 0x409, 0x40A, 0x40B, 0x40C, 0x40E, 0x40F, 0x2160, 0x2161, 0x2162, 0x2163, 0x2164, 0x2165, 0x2166, 0x2167, 0x2168, 0x2169, 0x216A, 0x216B, 0x216C, 0x216D, 0x216E, 0x216F, 0xFF21, 0xFF22, 0xFF23, 0xFF24, 0xFF25, 0xFF26, 0xFF27, 0xFF28, 0xFF29, 0xFF2A, 0xFF2B, 0xFF2C, 0xFF2D, 0xFF2E, 0xFF2F, 0xFF30, 0xFF31, 0xFF32, 0xFF33, 0xFF34, 0xFF35, 0xFF36, 0xFF37, 0xFF38, 0xFF39, 0xFF3A, 0 };
p07gbar 2:e869ee8f3c3d 534 int i;
p07gbar 2:e869ee8f3c3d 535
p07gbar 2:e869ee8f3c3d 536
p07gbar 2:e869ee8f3c3d 537 for (i = 0; tbl_lower[i] && chr != tbl_lower[i]; i++) ;
p07gbar 2:e869ee8f3c3d 538
p07gbar 2:e869ee8f3c3d 539 return tbl_lower[i] ? tbl_upper[i] : chr;
p07gbar 2:e869ee8f3c3d 540 }