home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d07xx / d0797.lha / DVI2LJ / origsource / source.orig.lha / config.h.orig next >
Text File  |  1993-01-03  |  1KB  |  75 lines

  1. #define USEPXL
  2.  
  3. /* 
  4.  * maximal number of characters in font file
  5.  * #define  LASTFNTCHAR  127        classic version
  6.  * #define  LASTFNTCHAR  255        8-bit fonts
  7.  */
  8. #define  LASTFNTCHAR  255
  9.  
  10. /*
  11.  *  default font path
  12.  *  can be overridden by environment variable TEXPXL
  13.  *  or -a option
  14.  */
  15. #define  FONTAREA       "TeX:pk"
  16.  
  17. /* 
  18.  * if your LaserJet II P or LaserJet III or LaserJet 2000
  19.  * complains about not enough memory, you might try to recompile the
  20.  * program with the following lines commented out
  21.  */  
  22. /*
  23. #ifdef LJ2P
  24. #define LJ_LARGE_FONT_MEMORY
  25. #endif
  26. */
  27.  
  28. /* unix user: remove the following definition if you cannot access the
  29.  * appropriate C library functions
  30.  */
  31. /*
  32. #define TIMING
  33.  */
  34.  
  35. /*
  36.  * assure that LJ is defined when LJ2P is defined
  37.  */
  38. #ifdef LJ2P
  39. #ifndef LJ
  40. #define LJ
  41. #endif
  42. #endif
  43.  
  44.  
  45. /*
  46.  * assure that IBM3812 is not defined when LJ2 is defined
  47.  */ 
  48. #ifdef LJ
  49. #ifdef IBM3812
  50. #undef IBM3812
  51. #endif
  52. #endif
  53.  
  54.  
  55. #define  TRUE      (bool) 1
  56. #define  FALSE     (bool) 0
  57. #define  UNKNOWN     -1
  58.  
  59. #define  STRSIZE         255     /* stringsize for file specifications  */
  60.  
  61. typedef  char    bool;
  62.  
  63. #ifdef hpux
  64. typedef  char    signed_char;
  65. #else
  66. typedef  signed char    signed_char;
  67. #endif
  68.  
  69. bool findfile();
  70.  
  71.  
  72.  
  73.  
  74.  
  75.