Show errors on reading badly formed gnumeric files
[pspp] / src / data / ods-reader.h
index b26997cfc1958ef5f1c156942eefbc6a7febe234..f068aa39d7b2eae68e73ac671213ccc5f5111074 100644 (file)
@@ -23,9 +23,11 @@ struct spreadsheet_read_info;
 struct spreadsheet_read_options;
 
 
-struct casereader * ods_open_reader (const struct spreadsheet_read_info *,
-                                    struct spreadsheet_read_options *,
-                                    struct dictionary **);
+struct spreadsheet *ods_probe (const char *filename, bool report_errors);
+
+struct casereader * ods_make_reader (struct spreadsheet *spreadsheet, 
+                                    const struct spreadsheet_read_info *gri,
+                                    struct spreadsheet_read_options *opts);
 
 
 #endif