NetSurf
print.h
Go to the documentation of this file.
1/*
2 * Copyright 2009 Chris Young <chris@unsatisfactorysoftware.co.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 AMIGA_PRINT_H
20#define AMIGA_PRINT_H
21#include <proto/exec.h>
22
23struct content;
24struct ami_print_window;
25
26void ami_print(struct hlcache_handle *c, int copies);
27void ami_print_ui(struct hlcache_handle *c);
28bool ami_print_cont(void);
29struct MsgPort *ami_print_init(void);
30void ami_print_free(void);
31struct MsgPort *ami_print_get_msgport(void);
32#endif
bool ami_print_cont(void)
Definition: print.c:460
void ami_print(struct hlcache_handle *c, int copies)
Definition: print.c:408
struct MsgPort * ami_print_init(void)
Definition: print.c:479
void ami_print_ui(struct hlcache_handle *c)
Definition: print.c:243
void ami_print_free(void)
Definition: print.c:488
struct MsgPort * ami_print_get_msgport(void)
Definition: print.c:494
struct hlcache_handle * c
Definition: print.c:118
Content which corresponds to a single URL.
High-level cache handle.
Definition: hlcache.c:66