OSDN Git Service

code clean.
[putex/putex.git] / src / texsourc / yandytex.h
index 7e57588..886122e 100644 (file)
 
 #define WORDS_BIGENDIAN 0
 
+//#pragma warning(disable:4032)
+#pragma warning(disable:4996) //
+#pragma warning(disable:4701) //
+//#pragma warning(disable:4100)
+//#pragma warning(disable:4244)
+#pragma warning(disable:4131) // old style declarator
+#pragma warning(disable:4135) // conversion between different integral types
+#pragma warning(disable:4127) // conditional expression is constant
+
 /* ``Standard'' headers.  */
 #include <kpathsea/c-auto.h>
 #include <kpathsea/c-std.h>
 #include <kpathsea/c-pathmx.h>
 #include <kpathsea/c-fopen.h>
+#include <kpathsea/c-ctype.h>
 #include <kpathsea/c-proto.h>
+#include <kpathsea/config.h>
 #include <kpathsea/getopt.h>
 #include <kpathsea/lib.h>
+#include <kpathsea/line.h>
+#include <kpathsea/readable.h>
 #include <kpathsea/types.h>
+#include <kpathsea/tex-file.h>
+#include <kpathsea/variable.h>
+#include <kpathsea/absolute.h>
+#include <stdarg.h>
+#include <setjmp.h>
+#include <time.h>
+#include <signal.h>
+#ifdef _WIN32
+  #include <kpathsea/win32lib.h>
+#else
+  #include <unistd.h>
+#endif
 #include "hpdf.h"
+#include "hpdf_utils.h"
 #include "avl.h"
 
-typedef signed char schar;
-typedef long        integer;
+typedef int         integer;
 typedef double      glue_ratio;
-typedef double      glueratio;
 typedef boolean     bool;
-typedef char *      ccharpointer;
 typedef double      real;
-typedef FILE *      file_ptr;
 typedef FILE *      alpha_file;
 typedef unsigned char ASCII_code;
 typedef unsigned short KANJI_code;
@@ -83,11 +105,11 @@ typedef enum
 #define a_open_out(f)   open_output (&(f), FOPEN_W_MODE)
 #define a_close(f)     check_fclose (f)
 
+#define MAXLINE 256 // for log_line buffer
+
 extern bool trace_flag;
 extern bool open_trace_flag;
-
 extern integer zround (double);
-extern bool test_eof (FILE * file);
 extern bool eoln (FILE * file);
 extern bool open_input (FILE **f, path_constant_type path_index, char *fopen_mode);
 extern bool open_output (FILE **f, char *fopen_mode);