X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=src%2Foutput%2FhtmlP.h;h=e7ad4de8cb818d9338cc8b6de1e89b728d6576fb;hb=04bf0e1fed86a5dc9032f2fc8d89ed6217b566e1;hp=ee86141426d9b6d1d00c2fd51c3ee6961e8e712b;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp-builds.git diff --git a/src/output/htmlP.h b/src/output/htmlP.h index ee861414..e7ad4de8 100644 --- a/src/output/htmlP.h +++ b/src/output/htmlP.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -20,19 +19,22 @@ #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. */ + 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 */