1 /*
2  * Copyright 2004 John M Bell <jmb202@ecs.soton.ac.uk>
3  *
4  * This file is part of NetSurf, http://www.netsurf-browser.org/
5  *
6  * NetSurf is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * NetSurf is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef _NETSURF_RISCOS_PRINT_H_
20 #define _NETSURF_RISCOS_PRINT_H_
21 
22 struct gui_window;
23 
24 extern struct gui_window *ro_print_current_window;
25 
26 void ro_print_save_bounce(wimp_message *m);
27 void ro_print_error(wimp_message *m);
28 void ro_print_type_odd(wimp_message *m);
29 bool ro_print_ack(wimp_message *m);
30 void ro_print_dataload_bounce(wimp_message *m);
31 void ro_print_cleanup(void);
32 
33 #endif
34