Súbor: [Platon] / cpdf / pdf.h (stiahnutie)
Revízia 1.5, Tue Feb 11 20:10:30 2003 UTC (21 years, 9 months ago) by lynx
Zmeny od 1.4: +2 -3
[lines]
improved reading and working with objects
remove read bug from get_startxref() if PDF uses \r\n as a newline.
better reading streams.
AND MANY MANY MORE! :))) but you still cant use it :-D
|
/*
* $Id: pdf.h,v 1.5 2003/02/11 20:10:30 lynx Exp $
*/
#ifndef PDF_H
#define PDF_H
struct contents {
int length;
char filter;
char *stream;
};
struct resources {
int type;
};
struct page {
struct contents contents;
struct resources resources;
int mediabox[4];
int parent;
};
#endif /* ifndef PDF_H */
Platon Group <platon@platon.sk> http://platon.sk/
|