1.1 diff -r 17531d20e477 -r 83a99cc69861 tumble_input.h 1.2 --- a/tumble_input.h Thu Mar 20 08:32:16 2003 +0000 1.3 +++ b/tumble_input.h Thu Mar 20 14:55:28 2003 +0000 1.4 @@ -1,7 +1,7 @@ 1.5 /* 1.6 * tumble: build a PDF file from image files 1.7 * 1.8 - * $Id: tumble_input.h,v 1.1 2003/03/19 22:54:08 eric Exp $ 1.9 + * $Id: tumble_input.h,v 1.2 2003/03/20 06:55:27 eric Exp $ 1.10 * Copyright 2003 Eric Smith <eric@brouhaha.com> 1.11 * 1.12 * This program is free software; you can redistribute it and/or modify 1.13 @@ -32,6 +32,7 @@ 1.14 1.15 typedef struct 1.16 { 1.17 + bool (*match_suffix) (char *suffix); 1.18 bool (*open_input_file) (FILE *f, char *name); 1.19 bool (*close_input_file) (void); 1.20 bool (*last_input_page) (void); 1.21 @@ -48,6 +49,7 @@ 1.22 void install_input_handler (input_handler_t *handler); 1.23 1.24 1.25 +bool match_input_suffix (char *suffix); 1.26 bool open_input_file (char *name); 1.27 bool close_input_file (void); 1.28 bool last_input_page (void);