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
|
/* Copyright (C) 1996, 1997, 1998 Aladdin Enterprises. All rights
reserved. Unauthorized use, copying, and/or distribution
prohibited. */
/* pctpm.h - structures of PCL's text parsing methods */
#ifndef pctpm_INCLUDED
#define pctpm_INCLUDED
#include "gx.h"
typedef struct pcl_text_parsing_method_s {
byte min1, max1;
byte min2, max2;
} pcl_text_parsing_method_t;
#define pcl_char_is_2_byte(ch, tpm) \
( ((ch) >= (tpm)->min1) && \
((ch) <= (tpm)->max2) && \
(((ch) <= (tpm)->max1) || ((ch) >= (tpm)->min2)) )
#define pcl_tpm_is_single_byte(tpm) ((tpm)->max1 == 0)
/* Single-byte only */
#define pcl_tpm_0_data { 0xff, 0, 0xff, 0 }
/* 0x21-0xff are double-byte */
#define pcl_tpm_21_data { 0x21, 0xff, 0x21, 0xff }
/* 0x81-0x9f, 0xe0-0xfc are double-byte */
#define pcl_tpm_31_data { 0x81, 0x9f, 0xe0, 0xfc }
/* 0x80-0xff are double-byte */
#define pcl_tpm_38_data { 0x80, 0xff, 0x80, 0xff }
#endif /* pctpm_INCLUDED */
|