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
|
# include "appUtilConfig.h"
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include "utilFontEncoding.h"
# include <appDebugon.h>
/************************************************************************/
/* */
/* List of more or less actively supported font encodings. */
/* */
/************************************************************************/
const FontCharset PS_Encodings[ENCODINGps_COUNT]=
{
{ psIsoLatin1GlyphNames, 256,
"-iso1", "Enc-iso1",
"encodingLatin2", "Latin 1",
FONTcharsetANSI, 1252, (const char *)0,
},
{ psIsoLatin2GlyphNames, 256,
"-iso2", "Enc-iso2",
"encodingLatin2", "Latin 2",
FONTcharsetEE, 1251, " CE",
},
{ psSymbolGlyphNames, 256,
"-symb", "Enc-symb",
"encodingSymbol", "Symbol",
FONTcharsetSYMBOL, 2, (const char *)0,
},
{ psCyrillicGlyphNames, 256,
"-cyr", "Enc-cyr",
"encodingCyrillic", "Cyrillic",
FONTcharsetRUSSIAN, 1250, (const char *)0,
},
{ psDingbatGlyphNames, 256,
"-ding", "Enc-ding",
"encodingDingbats", "Dingbats",
-1, -1, (const char *)0,
},
};
|