File: utilFontEncoding.c

package info (click to toggle)
ted 2.11-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 11,064 kB
  • ctags: 13,935
  • sloc: ansic: 120,446; makefile: 7,469; sh: 253
file content (45 lines) | stat: -rw-r--r-- 1,148 bytes parent folder | download
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,
				},
};