X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2FhtmlP.h;h=fa108ad238f33c5591d6bb2d77225ea85a27b194;hb=65e61cc92b48297625bc71cf31b8a19e301eb6c1;hp=673ca48410f928496654ada31b69bb4871a3ab20;hpb=a19b858e0ac3c69e4a28c0ca6d8674427268a863;p=pspp diff --git a/src/output/htmlP.h b/src/output/htmlP.h index 673ca48410..fa108ad238 100644 --- a/src/output/htmlP.h +++ b/src/output/htmlP.h @@ -20,19 +20,22 @@ #if !htmlP_h #define htmlP_h 1 -#include +#include /* 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 */