X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput.h;h=03867e9ffcb11c883f164245d24562365d00078e;hb=e210b20bf6f405637c8c03dd280b5a4a627191b8;hp=d79554ffb7237f7b9ced096f62855e2a82b32509;hpb=d807ad29cc0d3caa4f0e04ee4b75c70a225cfeaf;p=pspp diff --git a/src/output.h b/src/output.h index d79554ffb7..03867e9ffc 100644 --- a/src/output.h +++ b/src/output.h @@ -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 *);