-
Notifications
You must be signed in to change notification settings - Fork 1
/
help.h
42 lines (37 loc) · 837 Bytes
/
help.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* help.h
*/
/* This software is copyrighted as detailed in the LICENSE file. */
/* help locations */
#define UHELP_PAGE 1
#define UHELP_ART 2
#define UHELP_NG 3
#define UHELP_NGSEL 4
#define UHELP_ADDSEL 5
#ifdef ESCSUBS
#define UHELP_SUBS 6
#endif
#define UHELP_ARTSEL 7
#define UHELP_MULTIRC 8
#define UHELP_OPTIONS 9
#ifdef SCAN
#define UHELP_SCANART 10
#endif
#define UHELP_UNIV 11
/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */
void help_init _((void));
int help_page _((void));
int help_art _((void));
int help_ng _((void));
int help_ngsel _((void));
int help_addsel _((void));
#ifdef ESCSUBS
int help_subs _((void));
#endif
int help_artsel _((void));
int help_multirc _((void));
int help_options _((void));
#ifdef SCAN
int help_scanart _((void));
#endif
int help_univ _((void));
int univ_key_help _((int));