Commit 617a2e1c3c8176e8ae31313a784829f278b1766e

David Turner 2002-02-27T21:25:47

adding several experimental sources: - OpenType Layout validation and parsing (common tables) - Type 1 charmap processing

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
diff --git a/include/freetype/internal/ftobjs.h b/include/freetype/internal/ftobjs.h
index 092ae3f..fe53a23 100644
--- a/include/freetype/internal/ftobjs.h
+++ b/include/freetype/internal/ftobjs.h
@@ -75,6 +75,159 @@ FT_BEGIN_HEADER
 
 
   /*************************************************************************/
+  /*************************************************************************/
+  /*************************************************************************/
+  /****                                                                 ****/
+  /****                                                                 ****/
+  /****                    V A L I D A T I O N                          ****/
+  /****                                                                 ****/
+  /****                                                                 ****/
+  /*************************************************************************/
+  /*************************************************************************/
+  /*************************************************************************/
+
+ /* handle to a validation object */
+  typedef struct FT_ValidatorRec_*   FT_Validator;
+
+ /**************************************************************************
+  *
+  *  there are three distinct validation levels defined here:
+  *
+  *  FT_VALIDATE_DEFAULT ::
+  *    a table that passes this validation level can be used reliably by
+  *    FreeType. It generally means that all offsets have been checked to
+  *    prevent out-of-bound reads, array counts are correct, etc..
+  *
+  *
+  *  FT_VALIDATE_TIGHT ::
+  *    a table that passes this validation level can be used reliably and
+  *    doesn't contain invalid data. For example, a charmap table that
+  *    returns invalid glyph indices will not pass, even though it can 
+  *    be used with FreeType in default mode (the library will simply
+  *    return an error later when trying to load the glyph)
+  *
+  *    it also check that fields that must be a multiple of 2, 4 or 8 don't
+  *    have incorrect values, etc..
+  *
+  *
+  *  FT_VALIDATE_PARANOID ::
+  *    only for font facists. Checks that a table follows the specification
+  *    100%. Very few fonts will be able to pass this level anyway but it
+  *    can be useful for certain tools like font editors/converters..
+  */
+  typedef enum FT_ValidationLevel_
+  {
+    FT_VALIDATE_DEFAULT = 0,
+    FT_VALIDATE_TIGHT,
+    FT_VALIDATE_PARANOID
+  
+  } FT_ValidationLevel;
+
+
+ /* validator structure */
+  typedef struct FT_ValidatorRec_
+  {
+    FT_Byte*            base;   /* address of table in memory           */
+    FT_Byte*            limit;  /* 'base' + sizeof(table) in memory     */
+    FT_ValidationLevel  level;  /* validation level                     */
+    FT_Error            error;  /* error returned. 0 means success      */
+    
+    jmp_buf             jump_buffer;  /* used for exception handling */
+    
+  } FT_ValidatorRec;
+
+
+ /* sets the error field in a validator, then calls 'longjmp' to return */
+ /* to high-level caller. Using 'setjmp/longjmp' avoids many stupid     */
+ /* error checks within the validation routines..                       */
+ /*                                                                     */
+  FT_BASE( void )
+  ft_validate_error( FT_Valid  valid,
+                     FT_Error  error );
+
+ /* calls ft_validate_error. Assumes that the 'valid' local variable holds */
+ /* a pointer to the current validator object..                            */
+ /*                                                                        */
+#define  FT_INVALID(_error)   ft_validate_error( valid, _error )
+
+ /* called when a broken table is detected */
+#define  FT_INVALID_TOO_SHORT   FT_INVALID( FT_Err_Invalid_Format )
+
+ /* called when an invalid offset is detected */
+#define  FT_INVALID_OFFSET      FT_INVALID( FT_Err_Invalid_Offset )
+
+ /* called when an invalid format/value is detected */
+#define  FT_INVALID_FORMAT      FT_INVALID( FT_Err_Invalid_Format )
+
+ /* called when an invalid glyph index is detected */
+#define  FT_INVALID_GLYPH_ID    FT_INVALID( FT_Err_Invalid_Glyph_Id )
+
+
+  /*************************************************************************/
+  /*************************************************************************/
+  /*************************************************************************/
+  /****                                                                 ****/
+  /****                                                                 ****/
+  /****                       C H A R M A P S                           ****/
+  /****                                                                 ****/
+  /****                                                                 ****/
+  /*************************************************************************/
+  /*************************************************************************/
+  /*************************************************************************/
+
+ /* handle to internal charmap object */
+  typedef struct FT_CMapRec_*              FT_CMap;
+  
+ /* handle to charmap class structure */
+  typedef const struct FT_CMap_ClassRec_*   FT_CMap_Class;
+
+ /* internal charmap object structure */
+  typedef struct FT_CMapRec_
+  {
+    FT_CharMapRec  charmap;
+    FT_CMap_Class  clazz;
+    FT_Pointer     data;
+    
+  } FT_CMapRec;
+
+ /* typecase any pointer to a charmap handle */
+#define  FT_CMAP(x)               ((FT_CMap)(x))
+
+ /* obvious macros */
+#define  FT_CMAP_PLATFORM_ID(x)   FT_CMAP(x)->charmap.platform_id
+#define  FT_CMAP_ENCODING_ID(x)   FT_CMAP(x)->charmap.encoding_id
+#define  FT_CMAP_ENCODING(x)      FT_CMAP(x)->charmap.encoding
+#define  FT_CMAP_FACE(x)          FT_CMAP(x)->charmap.face
+
+
+ /* class method definitions */
+  typedef FT_Error  (*FT_CMap_InitFunc)( FT_CMap     cmap,
+                                         FT_Pointer  data );
+
+  typedef void      (*FT_CMap_DoneFunc)( FT_CMap     cmap );
+
+  typedef FT_Error  (*FT_CMap_ValidateFunc)( FT_Pointer    cmap_data,
+                                             FT_Validator  valid );
+
+  typedef FT_UInt   (*FT_CMap_CharIndexFunc)( FT_Pointer   cmap_data,
+                                              FT_ULong     char_code );
+
+  typedef FT_UInt   (*FT_CMap_CharNextFunc)( FT_Pointer  cmap_data,
+                                             FT_ULong   *achar_code );
+
+  typedef struct FT_CMap_ClassRec_
+  {
+    FT_UInt                size;
+    FT_CMap_InitFunc       init;
+    FT_CMap_DoneFunc       done;
+    FT_CMap_ValidateFunc   validate;
+    FT_CMap_CharIndexFunc  char_index;
+    FT_CMap_CharNextFunc   char_next;
+  
+  } FT_CMap_ClassRec;
+
+
+  /*************************************************************************/
   /*                                                                       */
   /* <Struct>                                                              */
   /*    FT_Face_InternalRec                                                */
@@ -330,109 +483,6 @@ FT_BEGIN_HEADER
   FT_Done_GlyphSlot( FT_GlyphSlot  slot );
 
 
-#if 0
-
-  /*************************************************************************/
-  /*************************************************************************/
-  /*************************************************************************/
-  /****                                                                 ****/
-  /****                                                                 ****/
-  /****                   G L Y P H   L O A D E R                       ****/
-  /****                                                                 ****/
-  /****                                                                 ****/
-  /*************************************************************************/
-  /*************************************************************************/
-  /*************************************************************************/
-
-
-#define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS          1
-#define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES      2
-#define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID        4
-#define FT_SUBGLYPH_FLAG_SCALE                   8
-#define FT_SUBGLYPH_FLAG_XY_SCALE             0x40
-#define FT_SUBGLYPH_FLAG_2X2                  0x80
-#define FT_SUBGLYPH_FLAG_USE_MY_METRICS      0x200
-
-
-  enum
-  {
-    FT_GLYPH_OWN_BITMAP = 1
-  };
-
-
-  struct  FT_SubGlyph_
-  {
-    FT_Int     index;
-    FT_UShort  flags;
-    FT_Int     arg1;
-    FT_Int     arg2;
-    FT_Matrix  transform;
-  };
-
-
-  typedef struct  FT_GlyphLoad_
-  {
-    FT_Outline    outline;       /* outline             */
-    FT_UInt       num_subglyphs; /* number of subglyphs */
-    FT_SubGlyph*  subglyphs;     /* subglyphs           */
-    FT_Vector*    extra_points;  /* extra points table  */
-
-  } FT_GlyphLoad;
-
-
-  struct  FT_GlyphLoader_
-  {
-    FT_Memory     memory;
-    FT_UInt       max_points;
-    FT_UInt       max_contours;
-    FT_UInt       max_subglyphs;
-    FT_Bool       use_extra;
-
-    FT_GlyphLoad  base;
-    FT_GlyphLoad  current;
-
-    void*         other;            /* for possible future extension? */
-
-  };
-
-
-  FT_BASE( FT_Error )
-  FT_GlyphLoader_New( FT_Memory         memory,
-                      FT_GlyphLoader*  *aloader );
-
-  FT_BASE( FT_Error )
-  FT_GlyphLoader_Create_Extra( FT_GlyphLoader*  loader );
-
-  FT_BASE( void )
-  FT_GlyphLoader_Done( FT_GlyphLoader*  loader );
-
-  FT_BASE( void )
-  FT_GlyphLoader_Reset( FT_GlyphLoader*  loader );
-
-  FT_BASE( void )
-  FT_GlyphLoader_Rewind( FT_GlyphLoader*  loader );
-
-  FT_BASE( FT_Error )
-  FT_GlyphLoader_Check_Points( FT_GlyphLoader*  loader,
-                               FT_UInt          n_points,
-                               FT_UInt          n_contours );
-
-  FT_BASE( FT_Error )
-  FT_GlyphLoader_Check_Subglyphs( FT_GlyphLoader*  loader,
-                                  FT_UInt          n_subs );
-
-  FT_BASE( void )
-  FT_GlyphLoader_Prepare( FT_GlyphLoader*  loader );
-
-  FT_BASE( void )
-  FT_GlyphLoader_Add( FT_GlyphLoader*  loader );
-
-  FT_BASE( FT_Error )
-  FT_GlyphLoader_Copy_Points( FT_GlyphLoader*  target,
-                              FT_GlyphLoader*  source );
-
-#endif
-
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
diff --git a/src/otlayout/otlcommn.c b/src/otlayout/otlcommn.c
new file mode 100644
index 0000000..7d22fc8
--- /dev/null
+++ b/src/otlayout/otlcommn.c
@@ -0,0 +1,820 @@
+#include "otlayout.h"
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                       COVERAGE TABLE                          *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_coverage_validate( OTL_Bytes      table,
+                         OTL_Validator  valid )
+  {
+    OTL_Bytes  p;
+    OTL_UInt   format;
+
+    if ( table + 4 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    format = OTL_NEXT_UShort(p);
+    switch (format)
+    {
+      case 1:
+        {
+          OTL_UInt  count = OTL_NEXT_UShort(p);
+
+          if ( p + count*2 >= valid->limit )
+            OTL_INVALID_TOO_SHORT;
+
+          /* XXX: check glyph indices */
+        }
+        break;
+
+      case 2:
+        {
+          OTL_UInt  n, num_ranges = OTL_NEXT_UShort(p);
+          OTL_UInt  start, end, start_cover, total = 0, last = 0;
+
+          if ( p + num_ranges*6 >= valid->limit )
+            OTL_INVALID_TOO_SHORT;
+
+          for ( n = 0; n < num_ranges; n++ )
+          {
+            start       = OTL_NEXT_UShort(p);
+            end         = OTL_NEXT_UShort(p);
+            start_cover = OTL_NEXT_UShort(p);
+
+            if ( start > end || start_cover != total )
+              OTL_INVALID_DATA;
+
+            if ( n > 0 && start <= last )
+              OTL_INVALID_DATA;
+
+            total += (end - start + 1);
+            last   = end;
+          }
+        }
+        break;
+
+      default:
+        OTL_INVALID_FORMAT;
+    }
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_coverage_get_count( OTL_Bytes   table )
+  {
+    OTL_Bytes  p      = table;
+    OTL_UInt   format = OTL_NEXT_UShort(p);
+    OTL_UInt   count  = OTL_NEXT_UShort(p);
+    OTL_UInt   result = 0;
+
+    switch ( format )
+    {
+      case 1:
+        return count;
+
+      case 2:
+        {
+          OTL_UInt  start, end;
+
+          for ( ; count > 0; count-- )
+          {
+            start = OTL_NEXT_UShort(p);
+            end   = OTL_NEXT_UShort(p);
+            p    += 2;  /* skip start_index */
+
+            result += ( end - start + 1 );
+          }
+        }
+        break;
+
+      default:
+        ;
+    }
+
+    return  result;
+  }
+
+
+  OTL_LOCALDEF( OTL_Int )
+  otl_coverage_get_index( OTL_Bytes   table,
+                          OTL_UInt    glyph_index )
+  {
+    OTL_Bytes  p      = table;
+    OTL_UInt   format = OTL_NEXT_UShort(p);
+    OTL_UInt   count  = OTL_NEXT_UShort(p);
+
+    switch ( format )
+    {
+      case 1:
+        {
+          OTL_UInt   min = 0, max = count, mid, gindex;
+
+          table += 4;
+          while ( min < max )
+          {
+            mid    = ( min + max ) >> 1;
+            p      = table + 2*mid;
+            gindex = OTL_PEEK_UShort(p);
+
+            if ( glyph_index == gindex )
+              return (OTL_Int)mid;
+
+            if ( glyph_index < gindex )
+              max = mid;
+            else
+              min = mid + 1;
+          }
+        }
+        break;
+
+      case 2:
+        {
+          OTL_UInt   min = 0, max = count, mid;
+          OTL_UInt   start, end, delta, start_cover;
+
+          table += 4;
+          while ( min < max )
+          {
+            mid    = ( min + max ) >> 1;
+            p      = table + 6*mid;
+            start  = OTL_NEXT_UShort(p);
+            end    = OTL_NEXT_UShort(p);
+
+            if ( glyph_index < start )
+              max = mid;
+            else if ( glyph_index > end )
+              min = mid + 1;
+            else
+              return (OTL_Int)( glyph_index + OTL_NEXT_UShort(p) - start );
+          }
+        }
+        break;
+
+      default:
+        ;
+    }
+    return  -1;
+  }
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                  CLASS DEFINITION TABLE                       *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_class_definition_validate( OTL_Bytes      table,
+                                 OTL_Validator  valid )
+  {
+    OTL_Bytes  p = table;
+    OTL_UInt   format;
+
+    if ( p + 4 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    format = OTL_NEXT_UShort(p);
+    switch ( format )
+    {
+      case 1:
+        {
+          OTL_UInt  count, start = OTL_NEXT_UShort(p);
+
+          if ( p + 2 > valid->limit )
+            OTL_INVALID_TOO_SHORT;
+
+          count = OTL_NEXT_UShort(p);
+
+          if ( p + count*2 > valid->limit )
+            OTL_INVALID_TOO_SHORT;
+
+          /* XXX: check glyph indices */
+        }
+        break;
+
+      case 2:
+        {
+          OTL_UInt  n, num_ranges = OTL_NEXT_UShort(p);
+          OTL_UInt  start, end, value, last = 0;
+
+          if ( p + num_ranges*6 > valid->limit )
+            OTL_INVALID_TOO_SHORT;
+
+          for ( n = 0; n < num_ranges; n++ )
+          {
+            start = OTL_NEXT_UShort(p);
+            end   = OTL_NEXT_UShort(p);
+            value = OTL_NEXT_UShort(p);  /* ignored */
+
+            if ( start > end || ( n > 0 && start <= last ) )
+              OTL_INVALID_DATA;
+
+            last = end;
+          }
+        }
+        break;
+
+      default:
+        OTL_INVALID_FORMAT;
+    }
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_class_definition_get_value( OTL_Bytes  table,
+                                  OTL_UInt   glyph_index )
+  {
+    OTL_Bytes  p      = table;
+    OTL_UInt   format = OTL_NEXT_UShort(p);
+
+    switch ( format )
+    {
+      case 1:
+        {
+          OTL_UInt  start = OTL_NEXT_UShort(p);
+          OTL_UInt  count = OTL_NEXT_UShort(p);
+          OTL_UInt  index = (OTL_UInt)( glyph_index - start );
+
+          if ( index < count )
+          {
+            p += 2*index;
+            return OTL_PEEK_UShort(p);
+          }
+        }
+        break;
+
+      case 2:
+        {
+          OTL_UInt  count = OTL_NEXT_UShort(p);
+          OTL_UInt  min = 0, max = count, mid, gindex;
+
+          table += 4;
+          while ( min < max )
+          {
+            mid   = ( min + max ) >> 1;
+            p     = table + 6*mid;
+            start = OTL_NEXT_UShort(p);
+            end   = OTL_NEXT_UShort(p);
+
+            if ( glyph_index < start )
+              max = mid;
+            else if ( glyph_index > end )
+              min = mid+1;
+            else
+              return OTL_PEEK_UShort(p);
+          }
+        }
+        break;
+
+      default:
+        ;
+    }
+    return 0;
+  }
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                      DEVICE TABLE                             *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_device_table_validate( OTL_Bytes      table,
+                             OTL_Validator  valid )
+  {
+    OTL_Bytes  p = table;
+    OTL_UInt   start, end, count, format, count;
+
+    if ( p + 8 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    start  = OTL_NEXT_UShort(p);
+    end    = OTL_NEXT_UShort(p);
+    format = OTL_NEXT_UShort(p);
+
+    if ( format < 1 || format > 3 || end < start )
+      OTL_INVALID_DATA;
+
+    count    = (OTL_UInt)( end - start + 1 );
+
+    if ( p + ((1 << format)*count)/8> valid->limit )
+      OTL_INVALID_TOO_SHORT;
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_device_table_get_start( OTL_Bytes  table )
+  {
+    OTL_Bytes  p = table;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_device_table_get_end( OTL_Bytes  table )
+  {
+    OTL_Bytes  p = table + 2;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_Int )
+  otl_device_table_get_delta( OTL_Bytes   table,
+                              OTL_UInt    size )
+  {
+    OTL_Bytes   p = table;
+    OTL_Int     result = 0;
+    OTL_UInt    start, end, format, index, value;
+
+    start  = OTL_NEXT_UShort(p);
+    end    = OTL_NEXT_UShort(p);
+    format = OTL_NEXT_UShort(p);
+
+    if ( size >= start && size <= end )
+    {
+      /* we could do that with clever bit operations, but a switch is simply */
+      /* much simpler to understand and maintain !!                          */
+      /*                                                                     */
+      switch ( format )
+      {
+        case 1:
+          {
+            index   = (OTL_UInt)(( size - start )*2);
+            p      += (index/16);
+            value   = OTL_PEEK_UShort(p);
+            shift   = index & 15;
+            result  = (OTL_Short)(value << shift) >> (14-shift);
+          }
+          break;
+
+        case 2:
+          {
+            index   = (OTL_UInt)(( size - start )*4);
+            p      += (index/16);
+            value   = OTL_PEEK_UShort(p);
+            shift   = index & 15;
+            result  = (OTL_Short)(value << shift) >> (12-shift);
+          }
+          break;
+
+        case 3:
+          {
+            index   = (OTL_UInt)(( size - start )*8);
+            p      += (index/16);
+            value   = OTL_PEEK_UShort(p);
+            shift   = index & 15;
+            result  = (OTL_Short)(value << shift) >> (8-shift);
+          }
+          break;
+
+        default:
+          ;
+      }
+    }
+    return  result;
+  }
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                      LOOKUP LISTS                             *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_lookup_validate( OTL_Bytes      table,
+                       OTL_Validator  valid )
+  {
+    OTL_Bytes  p = table;
+    OTL_UInt   num_tables;
+
+    if ( table + 6 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    p += 4;
+    num_tables = OTL_NEXT_UShort(p);
+
+    if ( p + num_tables*2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    for ( ; num_tables > 0; num_tables-- )
+    {
+      offset = OTL_NEXT_UShort(p);
+
+      if ( table + offset >= valid->limit )
+        OTL_INVALID_OFFSET;
+    }
+
+    /* XXX: check sub-tables ?? */
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lookup_get_count( OTL_Bytes  table )
+  {
+    OTL_Bytes  p = table + 4;
+
+    return  OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_lookup_get_table( OTL_Bytes  table,
+                        OTL_UInt   index )
+  {
+    OTL_Bytes  p, result = NULL;
+    OTL_UInt   count;
+
+    p     = table + 4;
+    count = OTL_NEXT_UShort(p);
+    if ( index < count )
+    {
+      p     += index*2;
+      result = table + OTL_PEEK_UShort(p);
+    }
+    return  result;
+  }
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                      LOOKUP LISTS                             *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_lookup_list_validate( OTL_Bytes      table,
+                            OTL_Validator  valid )
+  {
+    OTL_Bytes  p = table, q;
+    OTL_UInt   num_lookups, offset;
+
+    if ( p + 2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    num_lookups = OTL_NEXT_UShort(p);
+
+    if ( p + num_lookups*2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    for ( ; num_lookups > 0; num_lookups-- )
+    {
+
+      offset = OTL_NEXT_UShort(p);
+
+      otl_lookup_validate( table + offset, valid );
+    }
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lookup_list_get_count( OTL_Bytes  table )
+  {
+    OTL_Bytes  p = table;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_lookup_list_get_lookup( OTL_Bytes  table,
+                              OTL_UInt   index )
+  {
+    OTL_Bytes  p, result = 0;
+    OTL_UInt   count;
+
+    p     = table;
+    count = OTL_NEXT_UShort(p);
+    if ( index < count )
+    {
+      p     += index*2;
+      result = table + OTL_PEEK_UShort(p);
+    }
+    return  result;
+  }
+
+
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_lookup_list_get_table( OTL_Bytes  table,
+                             OTL_UInt   lookup_index,
+                             OTL_UInt   table_index )
+  {
+    OTL_Bytes  result = NULL;
+
+    result = otl_lookup_list_get_lookup( table, lookup_index );
+    if ( result )
+      result = otl_lookup_get_table( result, table_index );
+
+    return result;
+  }
+
+
+  OTL_LOCALDEF( void )
+  otl_lookup_list_foreach( OTL_Bytes        table,
+                           OTL_ForeachFunc  func,
+                           OTL_Pointer      func_data )
+  {
+    OTL_Bytes  p     = table;
+    OTL_UInt   count = OTL_NEXT_UShort(p);
+
+    for ( ; count > 0; count-- )
+      func( table + OTL_NEXT_USHORT(p), func_data );
+  }
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                        FEATURES                               *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_feature_validate( OTL_Bytes      table,
+                        OTL_Validator  valid )
+  {
+    OTL_Bytes   p = table;
+    OTL_UInt    feat_params, num_lookups;
+
+    if ( p + 4 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    feat_params = OTL_NEXT_UShort(p);  /* ignored */
+    num_lookups = OTL_NEXT_UShort(p);
+
+    if ( p + num_lookups*2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    /* XXX: check lookup indices */
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_feature_get_count( OTL_Bytes   table )
+  {
+    OTL_Bytes  p = table + 4;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_feature_get_lookups( OTL_Bytes   table,
+                           OTL_UInt    start,
+                           OTL_UInt    count,
+                           OTL_UInt   *lookups )
+  {
+    OTL_Bytes  p;
+    OTL_UInt   num_features, result = 0;
+
+    p            = table + 4;
+    num_features = OTL_NEXT_UShort(p);
+
+    p += start*2;
+
+    for ( ; count > 0 && start < num_features; count--, start++ )
+    {
+      lookups[0] = OTL_NEXT_UShort(p);
+      lookups++;
+      result++;
+    }
+
+    return result;
+  }
+
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                        FEATURE LIST                           *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+  OTL_LOCALDEF( void )
+  otl_feature_list_validate( OTL_Bytes      table,
+                             OTL_Validator  valid )
+  {
+    OTL_Bytes  p = table;
+    OTL_UInt   num_features, offset;
+
+    if ( table + 2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    num_features = OTL_NEXT_UShort(p);
+
+    if ( p + num_features*2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    for ( ; num_features > 0; num_features-- )
+    {
+      p     += 4;   /* skip tag */
+      offset = OTL_NEXT_UShort(p);
+
+      otl_feature_table_validate( table + offset, valid );
+    }
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_feature_list_get_count( OTL_Bytes  table )
+  {
+    OTL_Bytes  p = table;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_feature_list_get_feature( OTL_Bytes  table,
+                                OTL_UInt   index )
+  {
+    OTL_Bytes  p, result = NULL;
+    OTL_UInt   count;
+
+    p     = table;
+    count = OTL_NEXT_UShort(p);
+
+    if ( index < count )
+    {
+      p     += index*2;
+      result = table + OTL_PEEK_UShort(p);
+    }
+    return  result;
+  }
+
+
+  OTL_LOCALDEF( void )
+  otl_feature_list_foreach( OTL_Bytes        table,
+                            OTL_ForeachFunc  func,
+                            OTL_Pointer      func_data )
+  {
+    OTL_Bytes   p;
+    OTL_UInt    count;
+
+    p = table;
+    count = OTL_NEXT_UShort(p);
+
+    for ( ; count > 0; count-- )
+      func( table + OTL_NEXT_UShort(p), func_data );
+  }
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                                                               *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+
+  OTL_LOCALDEF( void )
+  otl_lang_validate( OTL_Bytes      table,
+                     OTL_Validator  valid )
+  {
+    OTL_Bytes  p = table;
+    OTL_UInt   lookup_order;
+    OTL_UInt   req_feature;
+    OTL_UInt   num_features;
+
+    if ( table + 6 >= valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    lookup_order = OTL_NEXT_UShort(p);
+    req_feature  = OTL_NEXT_UShort(p);
+    num_features = OTL_NEXT_UShort(p);
+
+    /* XXX: check req_feature if not 0xFFFFU */
+
+    if ( p + 2*num_features >= valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    /* XXX: check features indices !! */
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lang_get_count( OTL_Bytes  table )
+  {
+    OTL_Bytes   p  = table + 4;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lang_get_features( OTL_Bytes  table,
+                         OTL_UInt   start,
+                         OTL_UInt   count,
+                         OTL_UInt  *features )
+  {
+    OTL_Bytes   p            = table + 4;
+    OTL_UInt    num_features = OTL_NEXT_UShort(p);
+    OTL_UInt    result       = 0;
+
+    p += start*2;
+
+    for ( ; count > 0 && start < num_features; start++, count-- )
+    {
+      features[0] = OTL_NEXT_UShort(p);
+      features++;
+      result++;
+    }
+    return  result;
+  }
+
+
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lang_get_req_feature( OTL_Bytes   table )
+  {
+    OTL_Bytes  p = table + 2;
+
+    return OTL_PEEK_UShort(p);
+  }
+
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                                                               *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+
+  OTL_LOCALDEF( void )
+  otl_script_table_validate( OTL_Bytes      table,
+                             OTL_Validator  valid )
+  {
+    OTL_UInt   default_lang;
+    OTL_Bytes  p = table;
+
+    if ( table + 4 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    default_lang = OTL_NEXT_UShort(p);
+    num_langs    = OTL_NEXT_UShort(p);
+
+    if ( default_lang != 0 )
+    {
+      if ( table + default_lang >= valid->limit )
+        OTL_INVALID_OFFSET;
+    }
+
+    if ( p + num_langs*6 >= valid->limit )
+      OTL_INVALID_OFFSET;
+
+    for ( ; num_langs > 0; num_langs-- )
+    {
+      OTL_UInt  offset;
+
+      p     += 4;  /* skip tag */
+      offset = OTL_NEXT_UShort(p);
+
+      otl_lang_validate( table + offset, valid );
+    }
+  }
+
+
+  OTL_LOCALDEF( void )
+  otl_script_list_validate( OTL_Bytes      list,
+                            OTL_Validator  valid )
+  {
+    OTL_UInt  num_scripts;
+    OTL_Bytes p = list;
+
+    if ( list + 2 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    num_scripts = OTL_NEXT_UShort(p);
+
+    if ( p + num_scripts*6 > valid->limit )
+      OTL_INVALID_TOO_SHORT;
+
+    for ( ; num_scripts > 0; num_scripts-- )
+    {
+      OTL_UInt  offset;
+
+      p     += 4; /* skip tag */
+      offset = OTL_NEXT_UShort(p);
+
+      otl_script_table_validate( list + offset, valid );
+    }
+  }
+
+
diff --git a/src/otlayout/otlcommn.h b/src/otlayout/otlcommn.h
new file mode 100644
index 0000000..8ee2b27
--- /dev/null
+++ b/src/otlayout/otlcommn.h
@@ -0,0 +1,211 @@
+/***************************************************************************
+ *
+ *  otlcommn.h
+ *
+ *    OpenType Layout common tables processing
+ *
+ *  this header provides several routines used to process common table
+ *  found in various OpenType Layout tables..
+ */
+#ifndef __OTLAYOUT_COMMON_H__
+#define __OTLAYOUT_COMMON_H__
+
+#include "otlayout.h"
+
+OTL_BEGIN_HEADER
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                       COVERAGE TABLE                          *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate coverage table */
+  OTL_LOCALDEF( void )
+  otl_coverage_validate( OTL_Bytes      base,
+                         OTL_Validator  valid );
+
+ /* return number of covered glyphs */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_coverage_get_count( OTL_Bytes   base );
+
+
+ /* return the coverage index corresponding to a glyph glyph index. */
+ /* returns -1 if the glyph isn't covered..                         */
+  OTL_LOCALDEF( OTL_Int )
+  otl_coverage_get_index( OTL_Bytes   base,
+                          OTL_UInt    glyph_index );
+
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                  CLASS DEFINITION TABLE                       *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate class definition table */
+  OTL_LOCALDEF( void )
+  otl_class_definition_validate( OTL_Bytes      table,
+                                 OTL_Validator  valid );
+
+ /* return class value for a given glyph index */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_class_definition_get_value( OTL_Bytes  table,
+                                  OTL_UInt   glyph_index );
+
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                      DEVICE TABLE                             *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate a device table */
+  OTL_LOCALDEF( void )
+  otl_device_table_validate( OTL_Bytes      table,
+                             OTL_Validator  valid );
+
+
+ /* return a device table's first size */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_device_table_get_start( OTL_Bytes  table );
+
+
+ /* return a device table's last size */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_device_table_get_end( OTL_Bytes  table );
+
+
+ /* return pixel adjustment for a given size */
+  OTL_LOCALDEF( OTL_Int )
+  otl_device_table_get_delta( OTL_Bytes   table,
+                              OTL_UInt    size );
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                           LOOKUPS                             *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate lookup table */
+  OTL_LOCALDEF( void )
+  otl_lookup_validate( OTL_Bytes      table,
+                       OTL_Validator  valid );
+
+ /* return number of sub-tables in a lookup */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lookup_get_count( OTL_Bytes  table );
+
+
+ /* return lookup sub-table */
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_lookup_get_table( OTL_Bytes  table,
+                        OTL_UInt   index );
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                      LOOKUP LISTS                             *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate lookup list */
+  OTL_LOCALDEF( void )
+  otl_lookup_list_validate( OTL_Bytes      table,
+                            OTL_Validator  valid );
+
+ /* return number of lookups in list */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_lookup_list_get_count( OTL_Bytes  table );
+
+
+ /* return a given lookup from a list */
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_lookup_list_get_lookup( OTL_Bytes  table,
+                              OTL_UInt   index );
+
+
+ /* return lookup sub-table from a list */
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_lookup_list_get_table( OTL_Bytes  table,
+                             OTL_UInt   lookup_index,
+                             OTL_UInt   table_index );
+
+ /* iterate over lookup list */
+  OTL_LOCALDEF( void )
+  otl_lookup_list_foreach( OTL_Bytes        table,
+                           OTL_ForeachFunc  func,
+                           OTL_Pointer      func_data );
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                        FEATURES                               *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate feature table */
+  OTL_LOCALDEF( void )
+  otl_feature_validate( OTL_Bytes      table,
+                        OTL_Validator  valid );
+
+ /* return feature's lookup count */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_feature_get_count( OTL_Bytes   table );
+
+ /* get several lookups from a feature. returns the number of lookups grabbed */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_feature_get_lookups( OTL_Bytes   table,
+                           OTL_UInt    start,
+                           OTL_UInt    count,
+                           OTL_UInt   *lookups );
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*****                                                               *****/
+ /*****                        FEATURE LIST                           *****/
+ /*****                                                               *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ /* validate a feature list */
+  OTL_LOCALDEF( void )
+  otl_feature_list_validate( OTL_Bytes      table,
+                             OTL_Validator  valid );
+
+ /* return number of features in list */
+  OTL_LOCALDEF( OTL_UInt )
+  otl_feature_list_get_count( OTL_Bytes  table );
+
+
+ /* return a given feature from a list */
+  OTL_LOCALDEF( OTL_Bytes )
+  otl_feature_list_get_feature( OTL_Bytes  table,
+                                OTL_UInt   index );
+
+ /* iterate over all features in a list */
+  OTL_LOCALDEF( void )
+  otl_feature_list_foreach( OTL_Bytes        table,
+                            OTL_ForeachFunc  func,
+                            OTL_Pointer      func_data );
+
+ /* */
+
+OTL_END_HEADER
+
+#endif /* __OTLAYOUT_COMMON_H__ */
diff --git a/src/sfnt/sfobjs.c b/src/sfnt/sfobjs.c
index 119fc35..d0432a2 100644
--- a/src/sfnt/sfobjs.c
+++ b/src/sfnt/sfobjs.c
@@ -300,6 +300,7 @@
     /* fonts within PDF documents, so don't check for them.            */
     (void)LOAD_( max_profile );
     (void)LOAD_( charmaps );
+
       
     /* the following tables are optional in PCL fonts -- */
     /* don't check for errors                            */
diff --git a/src/sfnt/ttcmap0.c b/src/sfnt/ttcmap0.c
index 9f3b6c4..d416b1b 100644
--- a/src/sfnt/ttcmap0.c
+++ b/src/sfnt/ttcmap0.c
@@ -34,8 +34,8 @@
 
 
 
-#define  TT_PEEK_Short   FT_PEEK_SHORT
-#define  TT_PEEK_UShort  FT_PEEK16_UBE
+#define  TT_PEEK_SHORT   FT_PEEK_SHORT
+#define  TT_PEEK_USHORT  FT_PEEK16_UBE
 #define  TT_PEEK_Long    FT_PEEK32_BE
 #define  TT_PEEK_ULong   FT_PEEK32_UBE
 
@@ -72,7 +72,7 @@
   tt_cmap0_validate( FT_Byte*      table,
                      FT_Validator  valid )
   {
-    FT_Byte*  p      = table + 2;  /* skip format */
+    FT_Byte*  p      = table + 2;
     FT_UInt   length = TT_NEXT_USHORT(p);
 
     if ( table + length > valid->limit || length < 262 )
@@ -83,6 +83,7 @@
     {
       FT_UInt  n, index;
 
+      p = table + 6;
       for ( n = 0; n < 256; n++ )
       {
         index = *p++;
@@ -183,7 +184,7 @@
   *    keys        6              USHORT[256]     sub-header keys
   *    subs        518            SUBHEAD[NSUBS]  sub-headers array
   *    glyph_ids   518+NSUB*8     USHORT[]        glyph id array
-  *    
+  *
   *   the 'keys' table is used to map charcode high-bytes to sub-headers.
   *   the value of 'NSUBS' is the number of sub-headers defined in the
   *   table and is computed by finding the maximum of the 'keys' table.
@@ -228,7 +229,7 @@
                      FT_Validator  valid )
   {
     FT_Byte*  p      = table + 2;  /* skip format */
-    FT_UInt   length = PEEK_UShort(p);
+    FT_UInt   length = TT_PEEK_USHORT(p);
     FT_UInt   n, max_subs;
     FT_Byte*  keys;        /* keys table */
     FT_Byte*  subs;        /* sub-headers */
@@ -256,6 +257,8 @@
         max_subs = index;
     }
 
+    FT_ASSERT( p == table + 518 );
+
     subs      = p;
     glyph_ids = subs + (max_subs + 1)*8;
     if ( glyph_ids > valid->limit )
@@ -322,8 +325,8 @@
     {
       FT_UInt  char_lo = (FT_UInt)( char_code & 0xFF );
       FT_UInt  char_hi = (FT_UInt)( char_code >> 8 );
-      FT_Byte* p       = table + 6;  /* keys table */
-      FT_Byte* subs    = p + 512;    /* subheaders table */
+      FT_Byte* p       = table + 6;    /* keys table */
+      FT_Byte* subs    = table + 518;  /* subheaders table */
       FT_Byte* sub;
 
 
@@ -339,14 +342,14 @@
         /* Otherwise, return 0                                 */
         /*                                                     */
         p  += char_lo*2;
-        if ( PEEK_UShort(p) != 0 )
+        if ( TT_PEEK_USHORT(p) != 0 )
           goto Exit;
       }
       else
       {
         /* a 16-bit character code */
-        p  += char_hi*2;                   /* jump to key entry */
-        sub = subs + PEEK_UShort(p);       /* jump to sub-header */
+        p  += char_hi*2;                       /* jump to key entry */
+        sub = subs + ( TT_PEEK_USHORT(p) & -8 );  /* jump to sub-header */
 
         /* check that the hi byte isn't a valid one-byte value */
         if ( sub == subs )
@@ -378,75 +381,22 @@
       start  = TT_NEXT_USHORT(p);
       count  = TT_NEXT_USHORT(p);
       delta  = TT_NEXT_SHORT(p);
-      offset = PEEK_UShort(p);
+      offset = TT_PEEK_USHORT(p);
 
       index -= start;
       if ( index < count && offset != 0 )
       {
         p    += offset + 2*index;
-        index = PEEK_UShort(p);
-
-        if ( index == 0 )
-          goto Exit;
+        index = TT_PEEK_USHORT(p);
 
-        result = (FT_UInt)( index + delta ) & 0xFFFFU;
+        if ( index != 0 )
+          result = (FT_UInt)( index + delta ) & 0xFFFFU;
       }
     }
-
-  Exit:
     return result;
   }
 
 
- /* return first valid charcode in a format 2 sub-header */
-  static FT_ULong
-  tt_cmap2_subheader_first( FT_Byte*  subheader,
-                            FT_UInt   char_hi,
-                            FT_UInt  *agindex )
-  {
-    FT_ULong  result    = 0;
-    FT_UInt   n, gindex = 0;
-    FT_Byte*  p         = subheader;
-
-    FT_UInt   start  = TT_NEXT_USHORT(p);
-    FT_UInt   count  = TT_NEXT_USHORT(p);
-
-    if ( count > 0 )
-    {
-      FT_Int    delta  = TT_NEXT_SHORT(p);
-      FT_UInt   offset = TT_NEXT_USHORT(p);
-
-      if ( offset == 0 )
-      {
-        /* simple difference, compute directly */
-        result = char_hi*256 + start;
-        gindex = (FT_UInt)( start + delta ) & 0xFFFFU;
-      }
-      else
-      {
-        FT_UInt  i, index;
-
-        /* parse glyph id table for non-0 indices */
-        p += offset - 2;
-        for (; i < count; i++ )
-        {
-          index = TT_NEXT_USHORT(p);
-          if ( index != 0 )
-          {
-            result = char_hi*256 + start + i;
-            gindex = (FT_UInt)(index + delta) & 0xFFFFU;
-            break;
-          }
-        }
-      }
-    }
-
-    if ( agindex )
-      *agindex = gindex;
-
-    return result;
-  }
-
 
   static FT_UInt
   tt_cmap2_char_next( FT_Byte*  table,
@@ -459,7 +409,7 @@
     FT_Byte*  p;
 
     ++char_code;
-    for (;;)
+    while ( char_code < 0x10000U )
     {
       subheader = tt_cmap2_get_subheader( table, char_code );
       if ( subheader )
@@ -468,7 +418,7 @@
         FT_UInt   start   = TT_NEXT_USHORT(p);
         FT_UInt   count   = TT_NEXT_USHORT(p);
         FT_Int    delta   = TT_NEXT_SHORT(p);
-        FT_UInt   offset  = PEEK_UShort(p);
+        FT_UInt   offset  = TT_PEEK_USHORT(p);
         FT_UInt   char_lo = (FT_UInt)( char_code & 0xFF );
         FT_UInt   pos, index;
 
@@ -505,8 +455,6 @@
       /* jump to next sub-header, i.e. higher byte value */
     Next_SubHeader:
       char_code = (char_code & -256) + 256;
-      if ( char_code >= 0x10000U )
-        break;
     }
 
   Exit:
@@ -534,6 +482,58 @@
  /************************************************************************/
  /************************************************************************/
 
+ /*************************************************************************
+  *
+  *  TABLE OVERVIEW:
+  *  ---------------
+  *
+  *    NAME        OFFSET           TYPE               DESCRIPTION
+  *
+  *    format        0              USHORT             must be 4
+  *    length        2              USHORT             table length in bytes
+  *    language      4              USHORT             Mac language code
+  *
+  *    segCountX2    6              USHORT             2*NUM_SEGS
+  *    searchRange   8              USHORT             2*(1 << LOG_SEGS)
+  *    entrySelector 10             USHORT             LOG_SEGS
+  *    rangeShift    12             USHORT             segCountX2 - searchRange
+  *
+  *    endCount      14             USHORT[NUM_SEGS]   end charcode for each
+  *                                                    segment. last is 0xFFFF
+  *
+  *    pad           14+NUM_SEGS*2  USHORT             padding
+  *
+  *    startCount    16+NUM_SEGS*2  USHORT[NUM_SEGS]   first charcode for each
+  *                                                    segment
+  *
+  *    idDelta       16+NUM_SEGS*4  SHORT[NUM_SEGS]    delta for each segment
+  *
+  *    idOffset      16+NUM_SEGS*6  SHORT[NUM_SEGS]    range offset for each
+  *                                                    segment. can be 0
+  *
+  *    glyphIds      16+NUM_SEGS*8  USHORT[]           array og glyph id ranges
+  *
+  *
+  *  Charcodes are modelled by a series of ordered (increasing) intervals
+  *  called segments. Each segment has start and end codes, provided by
+  *  the 'startCount' and 'endCount' arrays. Segments must not be over-lapping
+  *  and the last segment should always contain the '0xFFFF' endCount.
+  *
+  *  The fields 'searchRange', 'entrySelector' and 'rangeShift' are better
+  *  ignored (they're traces of over-engineering in the TT specification)
+  *
+  *  Each segment also has a signed 'delta', as well as an optional offset
+  *  within the 'glyphIds' table.
+  *
+  *  if a segment's idOffset is 0, then the glyph index corresponding to
+  *  any charcode within the segment is obtained by adding the value of
+  *  'idDelta' directly to the charcode, modulo 65536
+  *
+  *  otherwise, a glyph index is taken from the glyph ids sub-array for the
+  *  segment, and the value of 'idDelta' is added to it..
+  */
+
+
 #ifdef TT_CONFIG_CMAP_FORMAT_4
 
   static void
@@ -542,14 +542,13 @@
   {
     FT_Byte*  p      = table + 2;  /* skip format */
     FT_UInt   length = TT_NEXT_USHORT(p);
-    FT_Byte   *ends, *starts, *offsets, *glyph_ids;
+    FT_Byte   *ends, *starts, *offsets, *deltas, *glyph_ids;
     FT_UInt   n, num_segs;
 
     if ( table + length > valid->limit || length < 16 )
       TOO_SHORT;
 
-    p += 2;  /* skip language */
-
+    p        = table + 6;
     num_segs = TT_NEXT_USHORT(p);   /* read segCountX2 */
 
     if ( valid->level >= FT_VALIDATE_PARANOID )
@@ -584,12 +583,11 @@
            search_range != (1 << entry_selector)  )
         INVALID_DATA;
     }
-    else
-      p += 6;
 
-    ends      = p;
-    starts    = ends + num_segs*2 + 2;
-    offsets   = starts + num_segs*4;
+    ends      = table   + 14;
+    starts    = table   + 16 + num_segs*2;
+    deltas    = starts  + num_segs*2;
+    offsets   = deltas  + num_segs*2;
     glyph_ids = offsets + num_segs*2;
 
     if ( glyph_ids >= table + length )
@@ -599,7 +597,7 @@
     if ( valid->level >= FT_VALIDATE_PARANOID )
     {
       p = ends + (num_segs-1)*2;
-      if ( PEEK_UShort(p) != 0xFFFFU )
+      if ( TT_PEEK_USHORT(p) != 0xFFFFU )
         INVALID_DATA;
     }
 
@@ -607,12 +605,14 @@
     /* check also the offsets..                                              */
     {
       FT_UInt  start, end, last = 0,offset, n;
+      FT_Int   delta;
 
       for ( n = 0; n < num_segs; n++ )
       {
-        p = starts + n*2;  start  = PEEK_UShort(p);
-        p = ends   + n*2;  end    = PEEK_UShort(p);
-        p = offsets + n*2; offset = PEEK_UShort(p);
+        p = starts  + n*2;  start  = TT_PEEK_USHORT(p);
+        p = ends    + n*2;  end    = TT_PEEK_USHORT(p);
+        p = deltas  + n*2;  delta  = TT_PEEK_SHORT(p);
+        p = offsets + n*2;  offset = TT_PEEK_USHORT(p);
 
         if ( end > start )
           INVALID_DATA;
@@ -625,10 +625,26 @@
           p += offset;  /* start of glyph id array */
 
           /* check that we point within the glyph ids table only */
-          if ( p < glyph_ids || p + (end - start + 1) > table + length )
+          if ( p < glyph_ids || p + (end - start + 1)*2 > table + length )
             INVALID_DATA;
 
-          /* XXXX: check glyph ids !! */
+          /* check glyph indices within the segment range */
+          if ( valid->level >= FT_VALIDATE_TIGHT )
+          {
+            FT_UInt   index;
+
+            for ( ; start < end; )
+            {
+              index = NEXT_USHORT(p);
+              if ( index != 0 )
+              {
+                index = (FT_UInt)(index + delta) & 0xFFFFU;
+
+                if ( index >= valid->num_glyphs )
+                  INVALID_GLYPH_ID;
+              }
+            }
+          }
         }
         last = end;
       }
@@ -651,7 +667,7 @@
       FT_UInt   code = (FT_UInt)char_code;
 
       p         = table + 6;
-      num_segs2 = PEEK_UShort(p);
+      num_segs2 = TT_PEEK_USHORT(p) & -2;  /* be paranoid !! */
 
       p = table + 14;               /* ends table   */
       q = table + 16 + num_segs2;   /* starts table */
@@ -668,13 +684,13 @@
         {
           index = (FT_UInt)( char_code - start );
 
-          p  = q + num_segs2 - 2; delta  = PEEK_Short(p);
-          p += num_segs2;         offset = PEEK_UShort(p);
+          p  = q + num_segs2 - 2; delta  = TT_PEEK_SHORT(p);
+          p += num_segs2;         offset = TT_PEEK_USHORT(p);
 
           if ( offset != 0 )
           {
             p    += offset + 2*index;
-            index = PEEK_UShort(p);
+            index = TT_PEEK_USHORT(p);
           }
 
           if ( index != 0 )
@@ -703,7 +719,7 @@
 
     code      = (FT_UInt)char_code;
     p         = table + 6;
-    num_segs2 = PEEK_UShort(p) & -2;  /* ensure even-ness */
+    num_segs2 = TT_PEEK_USHORT(p) & -2;  /* ensure even-ness */
 
     for (;;)
     {
@@ -723,8 +739,8 @@
 
         if ( code <= end )
         {
-          p  = q + num_segs2 - 2; delta  = PEEK_Short(p);
-          p += num_segs2;         offset = PEEK_UShort(p);
+          p  = q + num_segs2 - 2; delta  = TT_PEEK_SHORT(p);
+          p += num_segs2;         offset = TT_PEEK_USHORT(p);
 
           if ( offset != 0 )
           {
@@ -785,20 +801,41 @@
  /************************************************************************/
  /************************************************************************/
 
+ /*************************************************************************
+  *
+  *  TABLE OVERVIEW:
+  *  ---------------
+  *
+  *    NAME        OFFSET           TYPE               DESCRIPTION
+  *
+  *    format        0              USHORT             must be 4
+  *    length        2              USHORT             table length in bytes
+  *    language      4              USHORT             Mac language code
+  *
+  *    first         6              USHORT             first segment code
+  *    count         8              USHORT             segment size in chars
+  *    glyphIds      10             USHORT[count]      glyph ids
+  *
+  *
+  *  A very simplified segment mapping
+  */
+
 #ifdef TT_CONFIG_CMAP_FORMAT_6
 
   static void
   tt_cmap6_validate( FT_Byte*      table,
                      FT_Validator  valid )
   {
-    FT_Byte*  p = table + 2;
+    FT_Byte*  p;
     FT_UInt   length, start, count;
 
     if ( table + 10 > valid->limit )
       INVALID_TOO_SHORT;
 
+    p      = table + 2;
     length = TT_NEXT_USHORT(p);
-    p     += 2;  /* skip language */
+
+    p      = table + 6;  /* skip language */
     start  = TT_NEXT_USHORT(p);
     count  = TT_NEXT_USHORT(p);
 
@@ -833,7 +870,7 @@
     if ( index < count )
     {
       p += 2*index;
-      result = PEEK_UShort(p);
+      result = TT_PEEK_USHORT(p);
     }
     return result;
   }
@@ -924,6 +961,28 @@
  /************************************************************************/
  /************************************************************************/
 
+ /*************************************************************************
+  *
+  *  TABLE OVERVIEW:
+  *  ---------------
+  *
+  *    NAME        OFFSET           TYPE               DESCRIPTION
+  *
+  *    format        0              USHORT             must be 8
+  *    reseved       2              USHORT             reserved
+  *    length        4              ULONG              length in bytes
+  *    language      8              ULONG              Mac language code
+  *    is32          12             BYTE[8192]         32-bitness bitmap
+  *    count         8204           ULONG              number of groups
+  *
+  *  this header is followed by 'count' groups of the following format:
+  *
+  *    start         0              ULONG              first charcode
+  *    end           4              ULONG              last charcode
+  *    startId       8              ULONG              start glyph id for
+  *                                                    the group
+  */
+
 #ifdef TT_CONFIG_CMAP_FORMAT_8
 
   static void
@@ -939,11 +998,11 @@
       INVALID_TOO_SHORT;
 
     length = TT_NEXT_ULONG(p);
-    if ( table + length > valid->limit || length < 16 + 8192 )
+    if ( table + length > valid->limit || length < 8208 )
       INVALID_TOO_SHORT;
 
-    is32       = p + 4;        /* skip language     */
-    p          = is32 + 8192;  /* skip 'is32' array */
+    is32       = table + 12;
+    p          = is32  + 8192;  /* skip 'is32' array */
     num_groups = TT_NEXT_ULONG(p);
 
     if ( p + num_groups*12 > valid->limit )
@@ -983,10 +1042,10 @@
             {
               hi = (FT_UInt)(start >> 16);
               lo = (FT_UInt)(start & 0xFFFFU);
-  
+
               if ( is32[ hi >> 3 ] & (0x80 >> (hi & 7)) == 0 )
                 INVALID_DATA;
-  
+
               if ( is32[ lo >> 3 ] & (0x80 >> (lo & 7)) == 0 )
                 INVALID_DATA;
             }
@@ -995,20 +1054,22 @@
           {
             /* start_hi == 0, check that is32[i] is 0 for each i in */
             /* the range [start..end]                               */
-  
+
             /* end_hi cannot be != 0 !! */
             if ( end & ~0xFFFFU )
               INVALID_DATA;
-  
+
             for ( ; count > 0; count--, start++ )
             {
               lo = (FT_UInt)(start & 0xFFFFU);
-  
+
               if ( is32[ lo >> 3 ] & (0x80 >> (lo & 7)) != 0 )
                 INVALID_DATA;
             }
           }
         }
+
+        last = end;
       }
     }
   }
@@ -1019,19 +1080,19 @@
                        FT_ULong   char_code )
   {
     FT_UInt   result     = 0;
-    FT_Byte*  p          = table + 12 + 8192;
+    FT_Byte*  p          = table + 8204;
     FT_ULong  num_groups = TT_NEXT_ULONG(p);
     FT_ULong  n, start, end, start_id;
-    
+
     for ( ; num_groups > 0; num_groups-- )
     {
       start    = TT_NEXT_ULONG(p);
       end      = TT_NEXT_ULONG(p);
       start_id = TT_NEXT_ULONG(p);
-      
+
       if ( char_code < start )
         break;
-        
+
       if ( char_code <= end )
       {
         result = start_id + char_code - start;
@@ -1049,22 +1110,22 @@
   {
     FT_ULong   result     = 0;
     FT_UInt    gindex     = 0;
-    FT_Byte*   p          = table + 12 + 8192;
-    FT_ULong   num_groups = TT_NEXT_USHORT(p);
+    FT_Byte*   p          = table + 8204;
+    FT_ULong   num_groups = TT_NEXT_ULONG(p);
     FT_ULong   n, start, end, start_id;
-    
+
     ++char_code;
-    p = table + 16 + 8192;
-    
+    p = table + 8208;
+
     for ( n = 0; n < num_groups++; n++ )
     {
       start    = TT_NEXT_ULONG(p);
       end      = TT_NEXT_ULONG(p);
       start_id = TT_NEXT_ULONG(p);
-      
+
       if ( char_code < start )
         char_code = start;
-      
+
       if ( char_code <= end )
       {
         gindex = (FT_UInt)(char_code - start + start_id);
@@ -1075,13 +1136,13 @@
         }
       }
     }
-    
+
   Exit:
     if ( agindex )
       *agindex = gindex;
-    
+
     return result;
-  }                      
+  }
 
 
   static const TT_Cmap_ClassRec  tt_cmap8_class_rec =
@@ -1101,20 +1162,37 @@
  /************************************************************************/
  /************************************************************************/
 
+ /*************************************************************************
+  *
+  *  TABLE OVERVIEW:
+  *  ---------------
+  *
+  *    NAME        OFFSET           TYPE               DESCRIPTION
+  *
+  *    format        0              USHORT             must be 10
+  *    reseved       2              USHORT             reserved
+  *    length        4              ULONG              length in bytes
+  *    language      8              ULONG              Mac language code
+  *
+  *    start        12              ULONG              first char in range
+  *    count        16              ULONG              number of chars in range
+  *    glyphIds     20              USHORT[count]      glyph indices covered
+  */
+
 #ifdef TT_CONFIG_CMAP_FORMAT_10
 
   static void
   tt_cmap10_validate( FT_Byte*      table,
                       FT_Validator  valid )
   {
-    FT_Byte*  p = table + 2;
+    FT_Byte*  p = table + 4;
     FT_ULong  length, start, count;
 
     if ( table + 20 > valid->limit )
       INVALID_TOO_SHORT;
 
-    length = TT_NEXT_USHORT(p);
-    p     += 4;  /* skip language */
+    length = TT_NEXT_ULONG(p);
+    p      = table + 12;
     start  = TT_NEXT_ULONG(p);
     count  = TT_NEXT_ULONG(p);
 
@@ -1148,8 +1226,8 @@
 
     if ( index < count )
     {
-      p += 2*index;
-      result = PEEK_UShort(p);
+      p     += 2*index;
+      result = TT_PEEK_USHORT(p);
     }
     return result;
   }
@@ -1168,9 +1246,6 @@
     FT_ULong  index;
 
     char_code++;
-    if ( char_code >= 0x10000U )
-      goto Exit;
-
     if ( char_code < start )
       char_code = start;
 
@@ -1213,20 +1288,108 @@
  /************************************************************************/
  /************************************************************************/
 
+ /*************************************************************************
+  *
+  *  TABLE OVERVIEW:
+  *  ---------------
+  *
+  *    NAME        OFFSET           TYPE               DESCRIPTION
+  *
+  *    format        0              USHORT             must be 12
+  *    reseved       2              USHORT             reserved
+  *    length        4              ULONG              length in bytes
+  *    language      8              ULONG              Mac language code
+  *    count         12             ULONG              number of groups
+  *                  16
+  *
+  *  this header is followed by 'count' groups of the following format:
+  *
+  *    start         0              ULONG              first charcode
+  *    end           4              ULONG              last charcode
+  *    startId       8              ULONG              start glyph id for
+  *                                                    the group
+  */
+
 #ifdef TT_CONFIG_CMAP_FORMAT_12
 
   static void
   tt_cmap12_validate( FT_Byte*      table,
                       FT_Validator  valid )
   {
-  }                      
+    FT_Byte*   p;
+    FT_ULong   length;
+    FT_ULong   num_groups;
+
+    if ( table + 16 > valid->limit )
+      INVALID_TOO_SHORT;
+
+    p      = table + 4;
+    length = TT_NEXT_ULONG(p);
+
+    p          = table + 12;
+    num_groups =  TT_NEXT_ULONG(p);
+
+    if ( table + length > valid->limit || length < 16 + 12*num_groups )
+      INVALID_TOO_SHORT;
+
+    /* check groups, they must be in increasing order */
+    {
+      FT_ULong  n, start, end, start_id, count, last = 0;
+
+      for ( n = 0; n < num_groups; n++ )
+      {
+        FT_Bytes* q;
+        FT_UInt   hi, lo;
+
+        start    = TT_NEXT_ULONG(p);
+        end      = TT_NEXT_ULONG(p);
+        start_id = TT_NEXT_ULONG(p);
+
+        if ( start > end )
+          INVALID_DATA;
+
+        if ( n > 0 && start <= last )
+          INVALID_DATA;
+
+        if ( valid->level >= FT_VALIDATE_TIGHT )
+        {
+          if ( start_id + end - start >= valid->num_glyphs )
+            INVALID_GLYPH_ID;
+        }
+
+        last = end;
+      }
+    }
+  }
+
 
 
   static FT_UInt
   tt_cmap12_char_index( FT_Byte*   table,
                         FT_ULong   char_code )
   {
-  }                        
+    FT_UInt   result     = 0;
+    FT_Byte*  p          = table + 12;
+    FT_ULong  num_groups = TT_NEXT_ULONG(p);
+    FT_ULong  n, start, end, start_id;
+
+    for ( ; num_groups > 0; num_groups-- )
+    {
+      start    = TT_NEXT_ULONG(p);
+      end      = TT_NEXT_ULONG(p);
+      start_id = TT_NEXT_ULONG(p);
+
+      if ( char_code < start )
+        break;
+
+      if ( char_code <= end )
+      {
+        result = start_id + char_code - start;
+        break;
+      }
+    }
+    return result;
+  }
 
 
   static FT_ULong
@@ -1234,7 +1397,41 @@
                        FT_ULong   char_code,
                        FT_UInt   *agindex )
   {
-  }                       
+    FT_ULong   result     = 0;
+    FT_UInt    gindex     = 0;
+    FT_Byte*   p          = table + 12;
+    FT_ULong   num_groups = TT_NEXT_ULONG(p);
+    FT_ULong   n, start, end, start_id;
+
+    ++char_code;
+    p = table + 8208;
+
+    for ( n = 0; n < num_groups++; n++ )
+    {
+      start    = TT_NEXT_ULONG(p);
+      end      = TT_NEXT_ULONG(p);
+      start_id = TT_NEXT_ULONG(p);
+
+      if ( char_code < start )
+        char_code = start;
+
+      if ( char_code <= end )
+      {
+        gindex = (FT_UInt)(char_code - start + start_id);
+        if ( gindex != 0 )
+        {
+          result = char_code;
+          goto Exit;
+        }
+      }
+    }
+
+  Exit:
+    if ( agindex )
+      *agindex = gindex;
+
+    return result;
+  }
 
 
   static const TT_Cmap_ClassRec  tt_cmap12_class_rec =
@@ -1246,3 +1443,4 @@
 
 #endif /* TT_CONFIG_CMAP_FORMAT_12 */
 
+/* END */
diff --git a/src/type1/t1cmap.c b/src/type1/t1cmap.c
new file mode 100644
index 0000000..cd956f4
--- /dev/null
+++ b/src/type1/t1cmap.c
@@ -0,0 +1,414 @@
+#include "t1cmap.h"
+
+ /***************************************************************************/
+ /***************************************************************************/
+ /*****                                                                 *****/
+ /*****           TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS            *****/
+ /*****                                                                 *****/
+ /***************************************************************************/
+ /***************************************************************************/
+
+  static( void )
+  t1_cmap_std_init( T1_CMapStd   cmap,
+                    FT_Int       is_expert )
+  {
+    T1_Face             face    = (T1_Face) FT_CMAP_FACE(cmap);
+    PSNames_Interface*  psnames = face->psnames;
+
+    cmap->num_glyphs  = face->type1.num_glyphs;
+    cmap->glyph_names = face->type1.glyph_names;
+    cmap->sid_strings = sid_strings;
+    cmap->code_to_sid = is_expert ? psnames->adobe_expert_encoding
+                                  : psnames->adobe_std_encoding;
+
+    FT_ASSERT( cmap->code_to_sid != NULL );
+  }
+
+
+  FT_CALLBACK_DEF( void )
+  t1_cmap_std_done( T1_CMapStd  cmap )
+  {
+    cmap->num_glyphs  = 0;
+    cmap->glyph_names = NULL;
+    cmap->sid_strings = NULL;
+    cmap->code_to_sid = NULL;
+  }
+
+
+  FT_CALLBACK_DEF( FT_UInt )
+  t1_cmap_std_char_index( T1_CMapStd   cmap,
+                          FT_UInt32    char_code )
+  {
+    FT_UInt  result = 0;
+
+    if ( char_code < 256 )
+    {
+      FT_UInt      code;
+      const char*  glyph_name;
+      FT_Int       n;
+
+      /* conver character code to Adobe SID string */
+      code       = cmap->code_to_sid[ char_code ];
+      glyph_name = cmap->adobe_sid_strings[ code ];
+
+      /* look for the corresponding glyph name */
+      for ( n = 0; n < cmap->num_glyphs; n++ )
+      {
+        const char* gname = cmap->glyph_names[n];
+
+        if ( gname && gname[0] == glyph_name[0] &&
+             strcmp( gname, glyph_name ) == 0   )
+        {
+          result = n;
+          break;
+        }
+      }
+    }
+    return result;
+  }
+
+
+  FT_CALLBACK_DEF( FT_UInt )
+  t1_cmap_std_char_next( T1_CMapStd   cmap,
+                         FT_UInt32   *pchar_code )
+  {
+    FT_UInt   result    = 0;
+    FT_UInt32 char_code = *pchar_code;
+
+    ++char_code;
+    while ( char_code < 256 )
+    {
+      result = t1_cmap_standard_char_index( cmap, char_code );
+      if ( result != 0 )
+        goto Exit;
+
+      char_code++;
+    }
+    char_code = 0;
+
+  Exit:
+    *pchar_code = char_code;
+    return result;
+  }
+
+
+  FT_CALLBACK_DEF( FT_Error )
+  t1_cmap_standard_init( T1_CMapStd  cmap )
+  {
+    t1_cmap_std_init( cmap, 0 );
+    return 0;
+  }
+
+
+  FT_CALLBACK_TABLE const T1_CMap_ClassRec
+  t1_cmap_standard_class_rec =
+  {
+    sizeof( T1_CMapStdRec ),
+
+    t1_cmap_standard_init,
+    t1_cmap_std_done,
+    t1_cmap_std_char_index,
+    t1_cmap_std_char_next
+  };
+
+
+  FT_LOCAL_DEF T1_CMap_Class
+  t1_cmap_standard_class = &t1_cmap_standard_class_rec;
+
+
+
+
+
+  FT_CALLBACK_DEF( void )
+  t1_cmap_expert_init( T1_CMapStd  cmap )
+  {
+    t1_cmap_std_init( cmap, 1 );
+    return 0;
+  }
+
+  FT_CALLBACK_TABLE const T1_CMap_ClassRec
+  t1_cmap_expert_class_rec =
+  {
+    sizeof( T1_CMapStdRec ),
+
+    t1_cmap_expert_init,
+    t1_cmap_std_done,
+    t1_cmap_std_char_index,
+    t1_cmap_std_char_next
+  };
+
+
+  FT_LOCAL_DEF T1_CMap_Class
+  t1_cmap_expert_class = &t1_cmap_expert_class_rec;
+
+
+ /***************************************************************************/
+ /***************************************************************************/
+ /*****                                                                 *****/
+ /*****                    TYPE1 CUSTOM ENCODING CMAP                   *****/
+ /*****                                                                 *****/
+ /***************************************************************************/
+ /***************************************************************************/
+
+
+  FT_CALLBACK_DEF( FT_Error )
+  t1_cmap_custom_init( T1_CMapCustom  cmap )
+  {
+    T1_Face       face     = (T1_Face) FT_CMAP_FACE(cmap);
+    T1_Encoding*  encoding = face->type1.encoding;
+
+    cmap->first   = encoding->code_first;
+    cmap->count   = (FT_UInt)(encoding->code_last - cmap->first + 1);
+    cmap->indices = encoding->char_index;
+
+    FT_ASSERT( cmap->indices != NULL );
+    FT_ASSERT( encoding->code_first <= encoding->code_last );
+
+    return 0;
+  }
+
+
+  FT_CALLBACK_DEF( void )
+  t1_cmap_custom_done( T1_CMapCustom  cmap )
+  {
+    cmap->indices = NULL;
+    cmap->first   = 0;
+    cmap->count   = 0;
+  }
+
+
+  FT_CALLBACK_DEF( FT_UInt )
+  t1_cmap_custom_char_index( T1_CMapCustom  cmap,
+                             FT_UInt32      char_code )
+  {
+    FT_UInt    result = 0;
+    FT_UInt32  index;
+
+    index = (FT_UInt32)( char_code - cmap->first );
+    if ( index < cmap->count )
+      result = cmap->indices[ index ];
+
+    return result;
+  }
+
+
+  FT_CALLBACK_DEF( FT_UInt )
+  t1_cmap_custom_char_next( T1_CMapCustion  cmap,
+                            FT_UInt32      *pchar_code )
+  {
+    FT_UInt   result = 0;
+    FT_UInt32 char_code = *pchar_code;
+    FT_UInt32 index;
+
+    ++char_code;
+
+    if ( char_code < cmap->first )
+      char_code = cmap->first;
+
+    index = (FT_UInt32)( char_code - cmap->first );
+    while ( index < cmap->count; index++, char_code++ )
+    {
+      result = cmap->indices[index];
+      if ( result != 0 )
+        goto Exit;
+    }
+
+    char_code = 0;
+
+  Exit:
+    *pchar_code = char_code;
+    return result;
+  }
+
+
+  FT_CALLBACK_TABLE const FT_CMap_ClassRec
+  t1_cmap_custom_class_rec =
+  {
+    sizeof( T1_CMapCustomRec ),
+    t1_cmap_custom_init,
+    t1_cmap_custom_done,
+    t1_cmap_custom_char_index,
+    t1_cmap_custom_char_next
+  };
+
+
+  FT_LOCAL_DEF FT_CMap_Class
+  t1_cmap_custom_class = &t1_cmap_custom_class_rec;
+
+
+ /***************************************************************************/
+ /***************************************************************************/
+ /*****                                                                 *****/
+ /*****             TYPE1 SYNTHETIC UNICODE ENCODING CMAP               *****/
+ /*****                                                                 *****/
+ /***************************************************************************/
+ /***************************************************************************/
+
+
+  FT_CALLBACK_DEF( FT_Error )
+  t1_cmap_unicode_init( T1_CMapUnicode  cmap )
+  {
+    FT_Error    error;
+    FT_UInt     count;
+    T1_Face     face   = (T1_Face) FT_CMAP_FACE(cmap);
+    FT_Memory   memory = FT_FACE_MEMORY(face);
+
+    cmap->num_pairs = 0;
+    cmap->pairs     = NULL;
+
+    count = face->type1.num_glyphs;
+
+    if ( !ALLOC_ARRAY( cmap->pairs, count, T1_CMapUniPairRec ) )
+    {
+      FT_UInt         n, new_count;
+      T1_CMapUniPair  pair;
+      FT_UInt32       uni_code;
+
+
+      pair = cmap->pairs;
+      for ( n = 0; n < count; n++ )
+      {
+        const char*  gname = face->type1.glyph_names[n];
+
+        /* build unsorted pair table by matching glyph names */
+        if ( gname )
+        {
+          uni_code = PS_Unicode_Value( gname );
+
+          if ( uni_code != 0 )
+          {
+            pair->unicode = uni_code;
+            pair->gindex  = n;
+            pair++;
+          }
+        }
+
+        if ( new_count == 0 )
+        {
+          /* there are no unicode characters in here !! */
+          FREE( cmap->pairs );
+          error = FT_Err_Invalid_Argument;
+        }
+        else
+        {
+          /* re-allocate if the new array is much smaller than the original */
+          /* one..                                                          */
+          if ( new_count != count && new_count < count/2 )
+            REALLOC_ARRAY( cmap->pairs, count, new_count, T1_CMapUniPairRec )
+
+          /* sort the pairs table to allow efficient binary searches */
+          qsort( cmap->pairs,
+                 new_count,
+                 sizeof(T1_CMapUniPairRec),
+                 t1_cmap_uni_pair_compare );
+          
+          cmap->num_pairs = new_count;
+        }
+      }
+    }
+
+    return error;
+  }
+
+
+  FT_CALLBACK_DEF( void )
+  t1_cmap_unicode_done( T1_CMapUnicode  cmap )
+  {
+    FT_Face    face = FT_CMAP_FACE(cmap);
+    FT_Memory  memory = FT_FACE_MEMORY(face);
+    
+    FREE( cmap->pairs );
+    cmap->num_pairs = 0;
+  }
+
+
+  FT_CALLBACK_DEF( FT_UInt )
+  t1_cmap_unicode_char_index( T1_CMapUnicode  cmap,
+                              FT_UInt32       char_code )
+  {
+    FT_UInt         min = 0;
+    FT_UInt         max = cmap->num_pairs;
+    FT_UInt         mid;
+    T1_CMapUniPair  pair;
+    
+    while ( min < max )
+    {
+      mid  = min + (max - min)/2;
+      pair = cmap->pairs + mid;
+      
+      if ( pair->unicode == char_code )
+        return pair->gindex;
+        
+      if ( pair->unicode < char_code )
+        min = mid+1;
+      else
+        max = mid;
+    }
+    return 0;
+  }
+
+
+  FT_CALLBACK_DEF( FT_UInt )
+  t1_cmap_unicode_char_next( T1_CMapUnicode  cmap,
+                             FT_UInt32      *pchar_code )
+  {
+    FT_UInt32       char_code = *pchar_code + 1;
+
+  Restart:
+    {
+      FT_UInt         min = 0;
+      FT_UInt         max = cmap->num_pairs;
+      FT_UInt         mid;
+      T1_CMapUniPair  pair;
+
+      while ( min < max )
+      {
+        mid  = min + (max - min)/2;
+        pair = cmap->pairs + mid;
+        
+        if ( pair->unicode == char_code )
+        {
+          result = pair->gindex;
+          if ( result != 0 )
+            goto Exit;
+          
+          char_code++;
+          goto Restart;
+        }
+        
+        if ( pair->unicode < char_code )
+          min = mid+1;
+        else
+          max = mid;
+      }
+    
+      /* we didn't find it, but we have a pair just above it */
+      char_code = 0;
+      
+      if ( min < cmap->num_pairs )
+      {
+        pair   = cmap->num_pairs + min;
+        result = pair->gindex;
+        if ( result != 0 )
+          char_code = pair->unicode;
+      }
+    }
+
+  Exit:
+    *pchar_code = char_code;
+    return result;
+  }
+
+
+  FT_CALLBACK_TABLE const FT_CMap_ClassRec
+  t1_cmap_unicode_class_rec =
+  {
+    sizeof( T1_CMapUnicodeRec ),
+    t1_cmap_unicode_init,
+    t1_cmap_unicode_done,
+    t1_cmap_unicode_char_index,
+    t1_cmap_unicode_char_next
+  };
+
+
+  
\ No newline at end of file
diff --git a/src/type1/t1cmap.h b/src/type1/t1cmap.h
new file mode 100644
index 0000000..2285056
--- /dev/null
+++ b/src/type1/t1cmap.h
@@ -0,0 +1,92 @@
+#ifndef __FT_TYPE1_CMAP_H__
+#define __FT_TYPE1_CMAP_H__
+
+FT_BEGIN_HEADER
+
+ /***************************************************************************/
+ /***************************************************************************/
+ /*****                                                                 *****/
+ /*****           TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS            *****/
+ /*****                                                                 *****/
+ /***************************************************************************/
+ /***************************************************************************/
+
+  typedef struct T1_CMapStrRec_*       T1_CMapStd;
+
+  typedef struct T1_CMapUnicodeRec_*   T1_CMapUnicode;
+
+  
+  typedef struct T1_CMapStdRec_
+  {
+    FT_CMapRec          cmap;
+
+    const FT_UShort*    charcode_to_sid;
+    const char* const*  adobe_sid_strings;
+
+    FT_UInt             num_glyphs;
+    const char**        glyph_names;
+    
+    
+  } T1_CMapStdRec;
+
+
+  FT_LOCAL( FT_CMap_Class )   t1_cmap_standard_class;
+
+  FT_LOCAL( FT_CMap_Class )   t1_cmap_expert_class;
+
+ /***************************************************************************/
+ /***************************************************************************/
+ /*****                                                                 *****/
+ /*****                    TYPE1 CUSTOM ENCODING CMAP                   *****/
+ /*****                                                                 *****/
+ /***************************************************************************/
+ /***************************************************************************/
+
+  typedef struct T1_CMapCustomRec_*    T1_CMapCustom;
+  
+  typedef struct T1_CMapCustomRec_
+  {
+    FT_CMapRec    cmap;
+    FT_UInt       first;
+    FT_UInt       count;
+    FT_UInt*      indices;
+  
+  } T1_CMapCustomRec;
+
+
+  FT_LOCAL( FT_CMap_Class )   t1_cmap_custom_class;
+
+ /***************************************************************************/
+ /***************************************************************************/
+ /*****                                                                 *****/
+ /*****             TYPE1 SYNTHETIC UNICODE ENCODING CMAP               *****/
+ /*****                                                                 *****/
+ /***************************************************************************/
+ /***************************************************************************/
+
+  typedef struct T1_CMapUniPairRec_*   T1_CMapUniPair;
+  
+  typedef struct T1_CMapUniPairRec_
+  {
+    FT_UInt32  unicode;
+    FT_UInt    gindex;
+  
+  } T1_CMapUniPairRec;
+
+
+  typedef struct T1_CMapUnicodeRec_
+  {
+    FT_CMapRec      cmap;
+    FT_UInt         num_pairs;
+    T1_CMapUniPair  pairs;
+
+  } T1_CMapUnicodeRec;
+
+
+  FT_LOCAL( FT_CMap_Class )   t1_cmap_unicode_class;
+
+ /* */
+ 
+FT_END_HEADER
+
+#endif /* __FT_TYPE1_CMAP_H__ */