X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2FhtmlP.h;h=da292ab08af7a4dc21d394483eb0abb81c4036f7;hb=4dc2ebcfd1a113b25f6997ff3b66fa52ac41158b;hp=ee86141426d9b6d1d00c2fd51c3ee6961e8e712b;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/output/htmlP.h b/src/output/htmlP.h index ee86141426..da292ab08a 100644 --- a/src/output/htmlP.h +++ b/src/output/htmlP.h @@ -20,19 +20,19 @@ #if !htmlP_h #define htmlP_h 1 -#include "filename.h" +#include /* 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 substring text); + #endif /* !htmlP_h */