File: help.c

package info (click to toggle)
alevt 1%3A1.6.2-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 956 kB
  • ctags: 661
  • sloc: ansic: 6,284; makefile: 118; perl: 104; sh: 15
file content (84 lines) | stat: -rw-r--r-- 1,871 bytes parent folder | download | duplicates (3)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include "vt.h"
#include "misc.h"

//#define VFILL ""
#define VFILL "     "

#define HELP_HEADER							\
"........\6AleVT Online Help System       ",				\
"  \22`p0`0    p `0pppp                    ",				\
"\4\35\22\177 \177j5`p  \177 j5 j5        \7   Version \34",		\
"\4\35\22\177,\177j5\177.! +t>! j5        \7"VFILL VERSION" \34",	\
"  \22# #\42!\42#   \42   \42!                     ",

#define FLOF_DATA							\
	1, { {0x100,ANY_SUB}, {0x200,ANY_SUB}, {0x300,ANY_SUB},		\
	     {0x400,ANY_SUB}, {0x0ff,ANY_SUB}, {0x100,ANY_SUB} }


struct vt_page help_pages[] =
{
    { 0x900, 0, -1, 0, 0, (1<<26)-1, {
#include "vt900.out"
    }, FLOF_DATA },

    { 0x901, 2, -1, 0, 0, (1<<26)-1, {
#include "vt901-02.out"
    }, FLOF_DATA },

    { 0x901, 1, -1, 0, 0, (1<<26)-1, {
#include "vt901-01.out"
    }, FLOF_DATA },

#if 0
    { 0x902, 0, -1, 0, 0, (1<<26)-1, {
#include "vt902.out"
    }, FLOF_DATA },
#endif

    { 0x903, 0, -1, 0, 0, (1<<26)-1, {
#include "vt903.out"
    }, FLOF_DATA },

    { 0x910, 0, -1, 0, 0, (1<<26)-1, {
#include "vt910.out"
    }, FLOF_DATA },

    { 0x911, 2, -1, 0, 0, (1<<26)-1, {
#include "vt911-02.out"
    }, FLOF_DATA },

    { 0x911, 1, -1, 0, 0, (1<<26)-1, {
#include "vt911-01.out"
    }, FLOF_DATA },

    { 0x912, 2, -1, 0, 0, (1<<26)-1, {
#include "vt912-02.out"
    }, FLOF_DATA },

    { 0x912, 1, -1, 0, 0, (1<<26)-1, {
#include "vt912-01.out"
    }, FLOF_DATA },

    { 0x913, 0, -1, 0, 0, (1<<26)-1, {
#include "vt913.out"
    }, FLOF_DATA },

    { 0x914, 2, -1, 0, 0, (1<<26)-1, {
#include "vt914-02.out"
    }, FLOF_DATA },

    { 0x914, 1, -1, 0, 0, (1<<26)-1, {
#include "vt914-01.out"
    }, FLOF_DATA },

    { 0x915, 0, -1, 0, 0, (1<<26)-1, {
#include "vt915.out"
    }, FLOF_DATA },

    { 0x999, 0, -1, 0, 0, (1<<26)-1, {
#include "vt999.out"
    }, FLOF_DATA },
};

const int nr_help_pages = NELEM(help_pages);