Added confidence and prediction intervals to model export
[pspp-builds.git] / src / output.h
index d79554ffb7237f7b9ced096f62855e2a82b32509..03867e9ffcb11c883f164245d24562365d00078e 100644 (file)
@@ -14,8 +14,8 @@
 
    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., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA. */
 
 #if !output_h
 #define output_h 1
@@ -170,8 +170,8 @@ struct outp_class
     void (*text_metrics) (struct outp_driver *, struct outp_text *);
     void (*text_draw) (struct outp_driver *, struct outp_text *);
 
-    void (*initialise_chart)(struct outp_class *, struct chart *);
-    void (*finialise_chart)(struct outp_class *, struct chart *);
+    void (*initialise_chart)(struct outp_driver *, struct chart *);
+    void (*finalise_chart)(struct outp_driver *, struct chart *);
 
   };
 
@@ -242,9 +242,9 @@ extern struct outp_driver *outp_driver_list;
 extern char *outp_title;
 extern char *outp_subtitle;
 
-int outp_init (void);
-int outp_read_devices (void);
-int outp_done (void);
+void outp_init (void);
+void outp_read_devices (void);
+void outp_done (void);
 
 void outp_configure_clear (void);
 void outp_configure_add (char *);