pdf_private.h

changeset 59
e8821eb2fb08
child 62
9bd354b83e16
     1.1 diff -r d1c6dc4bf34a -r e8821eb2fb08 pdf_private.h
     1.2 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 +++ b/pdf_private.h	Thu Feb 20 12:16:00 2003 +0000
     1.4 @@ -0,0 +1,32 @@
     1.5 +struct pdf_page
     1.6 +{
     1.7 +  pdf_file_handle pdf_file;
     1.8 +  struct pdf_obj *page_dict;
     1.9 +  struct pdf_obj *media_box;
    1.10 +  struct pdf_obj *procset;
    1.11 +  struct pdf_obj *resources;
    1.12 +
    1.13 +  char last_XObject_name;
    1.14 +  struct pdf_obj *XObject_dict;
    1.15 +};
    1.16 +
    1.17 +
    1.18 +struct pdf_pages
    1.19 +{
    1.20 +  struct pdf_obj *pages_dict;
    1.21 +  struct pdf_obj *kids;
    1.22 +  struct pdf_obj *count;
    1.23 +};
    1.24 +
    1.25 +
    1.26 +struct pdf_file
    1.27 +{
    1.28 +  FILE             *f;
    1.29 +  struct pdf_obj   *first_ind_obj;
    1.30 +  struct pdf_obj   *last_ind_obj;
    1.31 +  long int         xref_offset;
    1.32 +  struct pdf_obj   *catalog;
    1.33 +  struct pdf_obj   *info;
    1.34 +  struct pdf_pages *root;
    1.35 +  struct pdf_obj   *trailer_dict;
    1.36 +};