summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-08-22 07:04:01 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-08-22 07:04:01 +0000
commit1612bfd9e3f1db86e943626640b71cdf3df5b9a0 (patch)
tree55b061c358a44ccfce7f8c584a8a876edf864870 /Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h
parent8ed265a1a7e2e74041cd214aa3acc933484adb01 (diff)
poppler 0.26.4
git-svn-id: svn://tug.org/texlive/trunk@35006 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h')
-rw-r--r--Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h b/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h
new file mode 100644
index 00000000000..d613acd2bb1
--- /dev/null
+++ b/Build/source/libs/poppler/poppler-0.26.4/fofi/FoFiBase.h
@@ -0,0 +1,56 @@
+//========================================================================
+//
+// FoFiBase.h
+//
+// Copyright 1999-2003 Glyph & Cog, LLC
+//
+//========================================================================
+
+#ifndef FOFIBASE_H
+#define FOFIBASE_H
+
+#ifdef USE_GCC_PRAGMAS
+#pragma interface
+#endif
+
+#include "goo/gtypes.h"
+
+//------------------------------------------------------------------------
+
+typedef void (*FoFiOutputFunc)(void *stream, const char *data, int len);
+
+//------------------------------------------------------------------------
+// FoFiBase
+//------------------------------------------------------------------------
+
+class FoFiBase {
+public:
+
+ virtual ~FoFiBase();
+
+protected:
+
+ FoFiBase(char *fileA, int lenA, GBool freeFileDataA);
+ static char *readFile(char *fileName, int *fileLen);
+
+ // S = signed / U = unsigned
+ // 8/16/32/Var = word length, in bytes
+ // BE = big endian
+ int getS8(int pos, GBool *ok);
+ int getU8(int pos, GBool *ok);
+ int getS16BE(int pos, GBool *ok);
+ int getU16BE(int pos, GBool *ok);
+ int getS32BE(int pos, GBool *ok);
+ Guint getU32BE(int pos, GBool *ok);
+ Guint getU32LE(int pos, GBool *ok);
+ Guint getUVarBE(int pos, int size, GBool *ok);
+
+ GBool checkRegion(int pos, int size);
+
+ Guchar *fileData;
+ Guchar *file;
+ int len;
+ GBool freeFileData;
+};
+
+#endif