home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 720 / PDF090B4-SorceCode / pdf / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-30  |  2.5 KB  |  103 lines

  1. //========================================================================
  2. //
  3. // config.h
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. // original decryption patch by Leo J.B. Smiers
  8. // patch re-taken for v0.7a and reworked for v0.80 by Tony Nugent
  9. //
  10. //========================================================================
  11. //
  12. // Ported to EPOC by Sander van der Wal
  13. //
  14. // $Id: config.h 1.2 2000-09-17 13:38:19+02 svdwal Exp svdwal $
  15.  
  16. #ifndef CONFIG_H
  17. #define CONFIG_H
  18.  
  19. //------------------------------------------------------------------------
  20. // general constants
  21. //------------------------------------------------------------------------
  22.  
  23. // xpdf version
  24. #define xpdfVersion "0.90 (decryption)"
  25.   
  26.  
  27. // supported PDF version
  28. #define pdfVersion "1.3"
  29. #define pdfVersionNum 1.3
  30.  
  31. // copyright notice
  32. #define xpdfCopyright "Copyright \251 1996-1999 Derek B. Noonburg"
  33. #define xpdfCopyright_Encryption "Decryption (originally) by Leo J.B. Smiers"
  34.  
  35. // default paper size (in points) for PostScript output
  36. #ifdef A4_PAPER
  37. #define defPaperWidth  595    // ISO A4 (210x297 mm)
  38. #define defPaperHeight 842
  39. #else
  40. #define defPaperWidth  612    // American letter (8.5x11")
  41. #define defPaperHeight 792
  42. #endif
  43.  
  44. // config file name
  45. #if defined(VMS)
  46. #define xpdfConfigFile "xpdfrc"
  47. #else
  48. #define xpdfConfigFile ".xpdfrc"
  49. #endif
  50.  
  51.  
  52. //------------------------------------------------------------------------
  53. // uncompress program
  54. //------------------------------------------------------------------------
  55. #ifdef HAVE_POPEN
  56.  
  57. // command to uncompress to stdout
  58. #  ifdef USE_GZIP
  59. #    define uncompressCmd "gzip -d -c -q"
  60. #  else
  61. #    ifdef __EMX__
  62. #      define uncompressCmd "compress -d -c"
  63. #    else
  64. #      define uncompressCmd "uncompress -c"
  65. #    endif // __EMX__
  66. #  endif // USE_GZIP
  67.  
  68. #else // HAVE_POPEN
  69.  
  70. // command to uncompress a file
  71. #  ifdef USE_GZIP
  72. #    define uncompressCmd "gzip -d -q"
  73. #  else
  74. #    define uncompressCmd "uncompress"
  75. #  endif // USE_GZIP
  76.  
  77. #endif // HAVE_POPEN
  78.  
  79. #ifdef __SYMBIAN32__
  80. #  undef uncompressCmd
  81. #  define uncompressCmd "?:\\System\\Programs\\GZIP.EXE -d -q"
  82. #endif
  83.  
  84. //------------------------------------------------------------------------
  85. // Win32 stuff
  86. //------------------------------------------------------------------------
  87.  
  88. #ifdef WIN32
  89. #ifdef CDECL
  90. #undef CDECL
  91. #endif
  92. #define CDECL __cdecl
  93. #else
  94. #define CDECL
  95. #endif
  96.  
  97.  
  98. #ifdef __SYMBIAN32__
  99. #undef JAPANESE_SUPPORT
  100. #endif
  101.  
  102. #endif
  103.