1 /* ---------------------------------------------------------------------- *
2  * help.h
3  * This file is part of lincity.
4  * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001.
5  * ---------------------------------------------------------------------- */
6 #ifndef __lchelp_h__
7 #define __lchelp_h__
8 
9 #include "cliglobs.h"
10 
11 #define MAX_HELP_LINE     256  /* Max size of a line of a help file (+1) */
12 
13 void do_help_mouse (int, int, int);
14 void do_prefs_mouse (int, int, int);
15 void refresh_help_page (void);
16 extern void activate_help (char *);
17 extern void draw_help_page (char *);
18 extern void parse_tcolourline (char *);
19 extern void parse_helpline (char *);
20 extern void parse_textline (char *);
21 extern void parse_iconline (char *);
22 extern void draw_help_icon (int, int, char *);
23 extern void parse_buttonline (char *);
24 extern void do_help_buttons (int, int);
25 extern void parse_tbuttonline (char *);
26 
27 #endif	/* __lchelp_h__ */
28