1.1 --- a/tumble_input.h Thu Mar 20 08:32:16 2003 +0000 1.2 +++ b/tumble_input.h Thu Mar 20 14:55:28 2003 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 /* 1.5 * tumble: build a PDF file from image files 1.6 * 1.7 - * $Id: tumble_input.h,v 1.1 2003/03/19 22:54:08 eric Exp $ 1.8 + * $Id: tumble_input.h,v 1.2 2003/03/20 06:55:27 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 @@ -32,6 +32,7 @@ 1.13 1.14 typedef struct 1.15 { 1.16 + bool (*match_suffix) (char *suffix); 1.17 bool (*open_input_file) (FILE *f, char *name); 1.18 bool (*close_input_file) (void); 1.19 bool (*last_input_page) (void); 1.20 @@ -48,6 +49,7 @@ 1.21 void install_input_handler (input_handler_t *handler); 1.22 1.23 1.24 +bool match_input_suffix (char *suffix); 1.25 bool open_input_file (char *name); 1.26 bool close_input_file (void); 1.27 bool last_input_page (void);