diff options
author | Martin Schröder <martin@oneiros.de> | 2006-12-25 23:53:09 +0000 |
---|---|---|
committer | Martin Schröder <martin@oneiros.de> | 2006-12-25 23:53:09 +0000 |
commit | 6f0e5de91f7cb5ea0951bc92a74a4c22722a54aa (patch) | |
tree | 89d1429133d4d58410a18e06fb544f35ad79a8f2 /Build/source/libs/xpdf/goo/gfile.h | |
parent | 57379ff68397e601ba3be4ef7f81f30629a43de9 (diff) |
Changes to xpdf for pdftex 1.40 (official und unofficial patches)
git-svn-id: svn://tug.org/texlive/trunk@2921 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/xpdf/goo/gfile.h')
-rw-r--r-- | Build/source/libs/xpdf/goo/gfile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Build/source/libs/xpdf/goo/gfile.h b/Build/source/libs/xpdf/goo/gfile.h index 82f1d7a98e3..8817e8b2381 100644 --- a/Build/source/libs/xpdf/goo/gfile.h +++ b/Build/source/libs/xpdf/goo/gfile.h @@ -46,6 +46,9 @@ # endif # endif #endif +#if defined(__DJGPP__) +typedef unsigned int time_t; +#endif #include "gtypes.h" class GString; @@ -83,7 +86,9 @@ extern time_t getModTime(char *fileName); // should be done to the returned file pointer; the file may be // reopened later for reading, but not for writing. The <mode> string // should be "w" or "wb". Returns true on success. +#ifndef PDF_PARSER_ONLY extern GBool openTempFile(GString **name, FILE **f, char *mode, char *ext); +#endif // Execute <command>. Returns true on success. extern GBool executeCommand(char *cmd); |