1.1 diff -r bfc6aaa089b0 -r 3d0be1c1c1b2 t2p.h 1.2 --- a/t2p.h Mon Aug 26 05:43:49 2002 +0000 1.3 +++ b/t2p.h Mon Aug 26 06:03:55 2002 +0000 1.4 @@ -1,21 +1,21 @@ 1.5 typedef struct 1.6 { 1.7 - boolean has_resolution; 1.8 + bool has_resolution; 1.9 double x_resolution; 1.10 double y_resolution; 1.11 1.12 - boolean has_page_size; 1.13 + bool has_page_size; 1.14 page_size_t page_size; 1.15 1.16 - boolean has_rotation; 1.17 + bool has_rotation; 1.18 int rotation; 1.19 1.20 - boolean has_crop; 1.21 + bool has_crop; 1.22 crop_t crop; 1.23 } input_attributes_t; 1.24 1.25 -boolean open_tiff_input_file (char *name); 1.26 -boolean close_tiff_input_file (void); 1.27 +bool open_tiff_input_file (char *name); 1.28 +bool close_tiff_input_file (void); 1.29 1.30 1.31 typedef struct 1.32 @@ -27,8 +27,8 @@ 1.33 char *keywords; 1.34 } pdf_file_attributes_t; 1.35 1.36 -boolean open_pdf_output_file (char *name, 1.37 - pdf_file_attributes_t *attributes); 1.38 +bool open_pdf_output_file (char *name, 1.39 + pdf_file_attributes_t *attributes); 1.40 1.41 1.42 void process_page_numbers (int page_index, 1.43 @@ -36,6 +36,6 @@ 1.44 int base, 1.45 page_label_t *page_label); 1.46 1.47 -boolean process_page (int image, /* range 1 .. n */ 1.48 - input_attributes_t input_attributes, 1.49 - bookmark_t *bookmarks); 1.50 +bool process_page (int image, /* range 1 .. n */ 1.51 + input_attributes_t input_attributes, 1.52 + bookmark_t *bookmarks);