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