pdf_name_tree.h

changeset 85
dcfd1d4b5c24
parent 80
96c64a7566df
child 125
e2ef1c2f9eca
     1.1 --- a/pdf_name_tree.h	Fri Mar 07 11:35:36 2003 +0000
     1.2 +++ b/pdf_name_tree.h	Sat Mar 08 06:52:09 2003 +0000
     1.3 @@ -4,7 +4,7 @@
     1.4   *      will be compressed using ITU-T T.6 (G4) fax encoding.
     1.5   *
     1.6   * PDF routines
     1.7 - * $Id: pdf_name_tree.h,v 1.1 2003/03/07 02:16:08 eric Exp $
     1.8 + * $Id: pdf_name_tree.h,v 1.2 2003/03/07 22:52:09 eric Exp $
     1.9   * Copyright 2003 Eric Smith <eric@brouhaha.com>
    1.10   *
    1.11   * This program is free software; you can redistribute it and/or modify
    1.12 @@ -26,9 +26,10 @@
    1.13  
    1.14  struct pdf_name_tree
    1.15  {
    1.16 -  pdf_file_handle   pdf_file;
    1.17 -  bool              number_tree;   /* false for name tree,
    1.18 -				      true for number tree */
    1.19 +  pdf_file_handle           pdf_file;
    1.20 +  struct pdf_name_tree      *next;  /* chain all name trees in the PDF file */
    1.21 +  bool                      number_tree;   /* false for name tree,
    1.22 +					      true for number tree */
    1.23    struct pdf_name_tree_node *root;
    1.24  };
    1.25  
    1.26 @@ -47,4 +48,4 @@
    1.27  				  struct pdf_obj *val);
    1.28  
    1.29  
    1.30 -void pdf_finalize_name_tree (struct pdf_name_tree *tree);
    1.31 +void pdf_finalize_name_trees (pdf_file_handle pdf_file);