Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Parser.h
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 20:32:18 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 20:32:18 (GMT)
commit7aac8dc8533347e21311b15186e0af82f1b22fd6 (patch)
tree02650bb02c8a1d8468c22f50ff151885d233016b /pdf/xpdf/Parser.h
parentd99fb4f4acd14fcdbda968abd907547dcc7af40c (diff)
Synched with Xpdf 0.92
this adds "decryption" support testing this code after six weeks immediately gives me segfaults (image drawing) :-O must have fixed that later without knowing :-O
Diffstat (limited to 'pdf/xpdf/Parser.h')
-rw-r--r--pdf/xpdf/Parser.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/pdf/xpdf/Parser.h b/pdf/xpdf/Parser.h
index 1e2c117..6e61844 100644
--- a/pdf/xpdf/Parser.h
+++ b/pdf/xpdf/Parser.h
@@ -29,7 +29,12 @@ public:
~Parser();
// Get the next object from the input stream.
+#ifndef NO_DECRYPTION
+ Object *getObj(Object *obj,
+ Guchar *fileKey = NULL, int objNum = 0, int objGen = 0);
+#else
Object *getObj(Object *obj);
+#endif
// Get stream.
Stream *getStream() { return lexer->getStream(); }