NetSurf
help.h
Go to the documentation of this file.
1/*
2 * Copyright 2013 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_HELP_H
20#define AMIGA_HELP_H
21#include <exec/types.h>
22
23/* This enum needs to match context_array in help.c */
24enum {
28};
29
30struct Screen;
31
32void ami_help_open(ULONG node, struct Screen *screen);
33void ami_help_free(void);
34void ami_help_new_screen(struct Screen *screen);
35ULONG ami_help_signal(void);
36void ami_help_process(void);
37#endif
38
void ami_help_new_screen(struct Screen *screen)
Definition: help.c:66
@ AMI_HELP_PREFS
Definition: help.h:27
@ AMI_HELP_MAIN
Definition: help.h:25
@ AMI_HELP_GUI
Definition: help.h:26
ULONG ami_help_signal(void)
Definition: help.c:72
void ami_help_process(void)
Definition: help.c:80
void ami_help_open(ULONG node, struct Screen *screen)
Definition: help.c:50
void ami_help_free(void)
Definition: help.c:57