OSDN Git Service

updating pdf backend.
[putex/putex.git] / src / texsourc / yandytex.h
1 /* Copyright 2014 Clerk Ma
2
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; either version 2 of the License, or
6    (at your option) any later version.
7
8    This program is distributed in the hope that it will be useful, but
9    WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11    General Public License for more details.
12
13    You should have received a copy of the GNU General Public License
14    along with this program; if not, write to the Free Software
15    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16    02110-1301 USA.  */
17
18 #ifndef _YANDYTEX_H
19 #define _YANDYTEX_H
20
21 #define WORDS_BIGENDIAN 0
22
23 //#pragma warning(disable:4032)
24 #pragma warning(disable:4996) //
25 #pragma warning(disable:4701) //
26 //#pragma warning(disable:4100)
27 //#pragma warning(disable:4244)
28 #pragma warning(disable:4131) // old style declarator
29 #pragma warning(disable:4135) // conversion between different integral types
30 #pragma warning(disable:4127) // conditional expression is constant
31
32 /* ``Standard'' headers.  */
33 #include <kpathsea/c-auto.h>
34 #include <kpathsea/c-std.h>
35 #include <kpathsea/c-pathmx.h>
36 #include <kpathsea/c-fopen.h>
37 #include <kpathsea/c-ctype.h>
38 #include <kpathsea/c-proto.h>
39 #include <kpathsea/config.h>
40 #include <kpathsea/getopt.h>
41 #include <kpathsea/lib.h>
42 #include <kpathsea/line.h>
43 #include <kpathsea/readable.h>
44 #include <kpathsea/types.h>
45 #include <kpathsea/tex-file.h>
46 #include <kpathsea/variable.h>
47 #include <kpathsea/absolute.h>
48 #include <setjmp.h>
49 #include <time.h>
50 #include <signal.h>
51 #include <conio.h>
52 #include "hpdf.h"
53 #include "hpdf_utils.h"
54 #include "avl.h"
55
56 typedef long        integer;
57 typedef double      glue_ratio;
58 typedef boolean     bool;
59 typedef double      real;
60 typedef FILE *      alpha_file;
61 typedef unsigned char ASCII_code;
62 typedef unsigned short KANJI_code;
63 typedef unsigned char eight_bits;
64 typedef unsigned short sixteen_bits;
65 typedef integer pool_pointer;
66 typedef integer str_number;
67 typedef unsigned char packed_ASCII_code;
68 typedef integer scaled;
69 typedef integer nonnegative_integer;
70 typedef char small_number;
71
72 typedef enum
73 {
74   NO_FILE_PATH = -1,
75   TEXFORMATPATH,
76   TEXINPUTPATH,
77   TFMFILEPATH,
78   LAST_PATH
79 } path_constant_type;
80
81 #define TEXFORMATPATHBIT (1 << TEXFORMATPATH)
82 #define TEXINPUTPATHBIT  (1 << TEXINPUTPATH)
83 #define TFMFILEPATHBIT   (1 << TFMFILEPATH)
84
85 #ifdef link
86   #undef link
87 #endif
88
89 #define abs(x)   ((integer)(x) >= 0 ? (integer)(x) : (integer)-(x))
90 #define chr(x)   (x)
91 #define ord(x)   (x)
92 #define odd(x)   ((x) % 2)
93 #define round(x) zround ((double) (x))
94 #define decr(x)  --(x)
95 #define incr(x)  ++(x)
96 #define fabs(x)  ((x) >= 0.0 ? (x) : -(x))
97 #define PATHMAX  PATH_MAX
98 #define toint(x) ((integer) (x))
99 #define a_open_in(f,p) open_input (&(f), p, FOPEN_R_MODE)
100 #define a_open_out(f)   open_output (&(f), FOPEN_W_MODE)
101 #define a_close(f)      check_fclose (f)
102
103 #define MAXLINE 256         // for log_line buffer
104
105 extern bool trace_flag;
106 extern bool open_trace_flag;
107
108 extern integer zround (double);
109 extern bool eoln (FILE * file);
110 extern bool open_input (FILE **f, path_constant_type path_index, char *fopen_mode);
111 extern bool open_output (FILE **f, char *fopen_mode);
112 extern int check_fclose (FILE * f);
113
114 #define show_line(str,flag) fputs(str,stdout)
115 #define show_char(chr) putc(chr, stdout)
116 extern char log_line[];
117
118 #endif