X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2FhtmlP.h;h=fe63843d90e8278e8b6c087abe6e26ddb8bf5df5;hb=8444d8d47de5e5f8d076b6f43f73c2c29494031e;hp=673ca48410f928496654ada31b69bb4871a3ab20;hpb=e346363b672a3940d85906ccc9f6eb58356f8ec6;p=pspp-builds.git diff --git a/src/output/htmlP.h b/src/output/htmlP.h index 673ca484..fe63843d 100644 --- a/src/output/htmlP.h +++ b/src/output/htmlP.h @@ -25,14 +25,14 @@ /* 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 */