1.1 diff -r 2bb19d98d928 -r 198616589af5 semantics.h 1.2 --- a/semantics.h Mon Dec 31 07:44:23 2001 +0000 1.3 +++ b/semantics.h Mon Dec 31 08:12:58 2001 +0000 1.4 @@ -18,18 +18,6 @@ 1.5 double bottom; 1.6 } crop_t; 1.7 1.8 -typedef struct 1.9 -{ 1.10 - boolean has_size; 1.11 - page_size_t size; 1.12 - 1.13 - boolean has_rotation; 1.14 - int rotation; 1.15 - 1.16 - boolean has_crop; 1.17 - crop_t crop; 1.18 -} input_modifiers_t; 1.19 - 1.20 1.21 typedef enum 1.22 { 1.23 @@ -40,59 +28,6 @@ 1.24 } input_modifier_type_t; 1.25 1.26 1.27 -typedef struct input_context_t 1.28 -{ 1.29 - struct input_context_t *parent; 1.30 - struct input_context_t *next; 1.31 - 1.32 - int image_count; /* how many pages reference this context, 1.33 - including those from subcontexts */ 1.34 - 1.35 - char *input_file; 1.36 - 1.37 - input_modifiers_t modifiers [INPUT_MODIFIER_TYPE_COUNT]; 1.38 -} input_context_t; 1.39 - 1.40 - 1.41 -typedef struct input_image_t 1.42 -{ 1.43 - struct input_image_t *next; 1.44 - input_context_t *input_context; 1.45 - range_t range; 1.46 -} input_image_t; 1.47 - 1.48 - 1.49 -typedef struct bookmark_t 1.50 -{ 1.51 - struct bookmark_t *next; 1.52 - char *name; 1.53 -} bookmark_t; 1.54 - 1.55 - 1.56 -typedef struct output_context_t 1.57 -{ 1.58 - struct output_context_t *parent; 1.59 - struct output_context_t *next; 1.60 - 1.61 - int page_count; /* how many pages reference this context, 1.62 - including those from subcontexts */ 1.63 - 1.64 - char *output_file; 1.65 - bookmark_t *first_bookmark; 1.66 - bookmark_t *last_bookmark; 1.67 - char *page_number_format; 1.68 -} output_context_t; 1.69 - 1.70 - 1.71 -typedef struct output_page_t 1.72 -{ 1.73 - struct output_page_t *next; 1.74 - output_context_t *output_context; 1.75 - range_t range; 1.76 - bookmark_t *bookmark_list; 1.77 -} output_page_t; 1.78 - 1.79 - 1.80 extern int line; /* line number in spec file */ 1.81 1.82