1 #ifndef _ENCODING_H
2 #define _ENCODING_H
3 
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;
12 };
13 
14 extern struct cidmap *cidmaps;
15 
16 extern void DeleteEncoding(Encoding *me);
17 extern void RemoveMultiples(Encoding *item);
18 #endif
19