got a lot of crypt32 stuff working
[reactos.git] / rosapps / mc / src / help.h
1 #ifndef __HELP_H
2 #define __HELP_H
3
4 /* This file is included by help.c and man2hlp.c */
5
6 /* Some useful constants */
7 #define CHAR_NODE_END '\04'
8 #define CHAR_LINK_START '\01'
9 #define CHAR_LINK_POINTER '\02'
10 #define CHAR_LINK_END '\03'
11 #define CHAR_ALTERNATE '\05'
12 #define CHAR_NORMAL '\06'
13 #define CHAR_VERSION '\07'
14 #define CHAR_BOLD_ON '\010'
15 #define CHAR_BOLD_OFF '\013'
16 #define CHAR_MCLOGO '\014'
17 #define CHAR_TEXTONLY_START '\016'
18 #define CHAR_TEXTONLY_END '\017'
19 #define CHAR_XONLY_START '\020'
20 #define CHAR_XONLY_END '\021'
21 #define CHAR_TITLE_ON '\022'
22 #define CHAR_TITLE_OFF '\023'
23 #define CHAR_ITALIC_ON '\024'
24 #define CHAR_RESERVED '\025'
25 #define STRING_LINK_START "\01"
26 #define STRING_LINK_POINTER "\02"
27 #define STRING_LINK_END "\03"
28 #define STRING_NODE_END "\04"
29
30 void interactive_display (char *filename, char *node);
31 char *help_follow_link (char *start, char *selected_item);
32 #endif /* __HELP_H */