/*
* Copyright (c) by Ramu Ramanathan and Allin Cottrell
*
* 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 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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*
*/
/* guiprint.h for gretl */
#ifndef GUIPRINT_H
#define GUIPRINT_H
#ifdef G_OS_WIN32
int winprint_graph (char *emfname);
#endif
#if defined(G_OS_WIN32) || defined (USE_GNOME)
void winprint (char *fullbuf, char *selbuf);
#endif
void special_print_summary (const Summary *summ,
const DATAINFO *pdinfo,
PRN *prn);
void special_print_vmatrix (const VMatrix *corr,
const DATAINFO *pdinfo,
PRN *prn);
void special_print_fit_resid (const FITRESID *fr,
const DATAINFO *pdinfo,
PRN *prn);
void special_print_forecast (const FITRESID *fr,
const DATAINFO *pdinfo,
PRN *prn);
void special_print_confints (const CoeffIntervals *cf,
PRN *prn);
int csv_to_clipboard (void);
int csv_selected_to_clipboard (void);
int csv_copy_listed_vars (windata_t *vwin, int fmt, int action);
#endif /* GUIPRINT_H */
syntax highlighted by Code2HTML, v. 0.9.1