GNU standards require "file name" instead of "filename" in
[pspp-builds.git] / src / output / htmlP.h
index 673ca48410f928496654ada31b69bb4871a3ab20..1a29caeb8cf1da7d904c24a7b3409974a439957d 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. */
-
-    /* Internal state. */
-    struct file_ext file;      /* Output file. */
-    int sequence_no;           /* Sequence number. */
+    char *file_name;
+    FILE *file;
   };
 
 extern struct outp_class html_class;
 
+struct outp_driver;
+void html_put_cell_contents (struct outp_driver *this,
+                             unsigned int opts, struct fixed_string *text);
+
 #endif /* !htmlP_h */