GRAPH scatterplot - fixed missing BY variable rendering
[pspp] / src / data / gnumeric-reader.h
index 8c7518f808037b92b69f64d7eca0934546bb9764..edec2b66c46e7e0203087287d211d3d158896ad2 100644 (file)
@@ -24,17 +24,15 @@ struct dictionary;
 struct spreadsheet_read_info;
 struct spreadsheet_read_options;
 
-struct spreadsheet *gnumeric_probe (const char *filename);
+struct spreadsheet *gnumeric_probe (const char *filename, bool report_errors);
 
 const char * gnumeric_get_sheet_name (struct spreadsheet *s, int n);
-
 char * gnumeric_get_sheet_range (struct spreadsheet *s, int n);
 
-void gnumeric_destroy (struct spreadsheet *);
-
 struct casereader * gnumeric_make_reader (struct spreadsheet *spreadsheet,
-                                         const struct spreadsheet_read_info *gri, 
-                                         struct spreadsheet_read_options *opts);
+                                         const struct spreadsheet_read_options *opts);
+
+void gnumeric_unref (struct spreadsheet *r);
 
 
 #endif