X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2FhtmlP.h;h=05340f4e145d078b8fad8b4c75bb4e0be5274c44;hb=ee46f6404b033f4d1312c6b52a207ec2da99d94b;hp=673ca48410f928496654ada31b69bb4871a3ab20;hpb=a19b858e0ac3c69e4a28c0ca6d8674427268a863;p=pspp-builds.git diff --git a/src/output/htmlP.h b/src/output/htmlP.h index 673ca484..05340f4e 100644 --- a/src/output/htmlP.h +++ b/src/output/htmlP.h @@ -1,38 +1,38 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. 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 - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #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 */