mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-12 22:39:18 +03:00
8fad60a1c6
line. * help.h: Declare HELP_TEXT_WIDTH. * help.c: Use HELP_TEXT_WIDTH.
30 lines
782 B
C
30 lines
782 B
C
#ifndef __HELP_H
|
|
#define __HELP_H
|
|
|
|
/* This file is included by help.c and man2hlp.c */
|
|
|
|
#define HELP_TEXT_WIDTH 58
|
|
|
|
/* Markers used in the help files */
|
|
#define CHAR_NODE_END '\04'
|
|
#define CHAR_LINK_START '\01'
|
|
#define CHAR_LINK_POINTER '\02'
|
|
#define CHAR_LINK_END '\03'
|
|
#define CHAR_ALTERNATE '\05'
|
|
#define CHAR_NORMAL '\06'
|
|
#define CHAR_VERSION '\07'
|
|
#define CHAR_FONT_BOLD '\010'
|
|
#define CHAR_FONT_NORMAL '\013'
|
|
#define CHAR_MCLOGO '\014'
|
|
#define CHAR_TEXTONLY_START '\016'
|
|
#define CHAR_TEXTONLY_END '\017'
|
|
#define CHAR_XONLY_START '\020'
|
|
#define CHAR_XONLY_END '\021'
|
|
#define CHAR_TITLE_ON '\022'
|
|
#define CHAR_TITLE_OFF '\023'
|
|
#define CHAR_FONT_ITALIC '\024'
|
|
#define CHAR_RESERVED '\025'
|
|
|
|
void interactive_display (char *filename, char *node);
|
|
#endif /* __HELP_H */
|