Applied patch #5611
[pspp] / src / output / htmlP.h
index 673ca48410f928496654ada31b69bb4871a3ab20..fa108ad238f33c5591d6bb2d77225ea85a27b194 100644 (file)
 #if !htmlP_h
 #define htmlP_h 1
 
-#include <data/filename.h>
+#include <data/file-name.h>
 
 /* HTML output driver extension record. */
 struct html_driver_ext
   {
-    /* User parameters. */
-    char *prologue_fn;         /* Prologue's filename relative to font dir. */
+    char *file_name;
+    char *chart_file_name;
+    FILE *file;
 
-    /* Internal state. */
-    struct file_ext file;      /* Output file. */
-    int sequence_no;           /* Sequence number. */
+    size_t chart_cnt;
   };
 
-extern struct outp_class html_class;
+extern const struct outp_class html_class;
+
+struct outp_driver;
+void html_put_cell_contents (struct outp_driver *this,
+                             unsigned int opts, struct substring text);
 
 #endif /* !htmlP_h */