From 4dae4c2de2d28a839e38ee72d2cd7a54ec143d02 Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Fri, 13 Dec 2013 07:15:20 +0000 Subject: poppler 0.25.0 git-svn-id: svn://tug.org/texlive/trunk@32399 c570f23f-e606-0410-a88d-b1316a301751 --- .../libs/poppler/poppler-0.25.0/fofi/FoFiBase.h | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 Build/source/libs/poppler/poppler-0.25.0/fofi/FoFiBase.h (limited to 'Build/source/libs/poppler/poppler-0.25.0/fofi/FoFiBase.h') diff --git a/Build/source/libs/poppler/poppler-0.25.0/fofi/FoFiBase.h b/Build/source/libs/poppler/poppler-0.25.0/fofi/FoFiBase.h new file mode 100644 index 00000000000..d613acd2bb1 --- /dev/null +++ b/Build/source/libs/poppler/poppler-0.25.0/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 -- cgit v1.2.3