beta-0.89.2
[luatex.git] / source / texk / web2c / luatexdir / luafontloader / fontforge / fontforge / encoding.h
blobc272c6d2ff72678b7a296718411f3795f61f4134
1 #ifndef _ENCODING_H
2 #define _ENCODING_H
4 struct cidmap {
5 char *registry, *ordering;
6 int supplement, maxsupple;
7 int cidmax; /* Max cid found in the charset */
8 int namemax; /* Max cid with useful info */
9 uint32 *unicode;
10 char **name;
11 struct cidmap *next;
14 extern struct cidmap *cidmaps;
16 extern void DeleteEncoding(Encoding *me);
17 extern void RemoveMultiples(Encoding *item);
18 #endif