1 #ifndef PDF_FOX_DETECT_H
2 #define PDF_FOX_DETECT_H
3 
4 typedef enum { UNKNOWN, JAVASCRIPT, U3D, TIFF, URI, DECODEPARAMS, SUBTYPE, TRUEOPENTYPE, JBIG2, JPX} PDFStreamType;
5 typedef struct _DecodeParams {
6 	uint32_t predictor;
7 	uint32_t colors;
8 	uint32_t bitspercomp;
9 	uint32_t columns;
10 	uint32_t earlychange;
11 } DecodeParams;
12 
13 void Dig (uint8_t *content, uint32_t length, PDFStreamType type);
14 
15 #endif
16