home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
progc
/
ebksrc.arj
/
EBDEF.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-30
|
1KB
|
57 lines
/*
ebdef.hpp
7-30-91
Electronic Book Definitions header
Copyright 1991
John W. Small
All rights reserved
PSW / Power SoftWare
P.O. Box 10072
McLean, Virginia 22102 8072 USA
John Small
Voice: (703) 759-3838
CIS: 73757,2233
*/
#ifndef EBDEF_HPP
#define EBDEF_HPP
/*
EB constants are defined below. For a discussion of
inlinks, outlinks, launchs, and targets see the
reference section of eb.doc.
*/
#define HYPER_LINKS_DELIMIT '|'
#define HYPER_LINKS_DELIMIT_STR "|"
#define HYPER_INLINKS_BEGIN '>'
#define HYPER_INLINKS_END '<'
#define HYPER_OUTLINKS_BEGIN '<'
#define HYPER_OUTLINKS_END '>'
#define HYPER_LAUNCH_DELIMIT '~'
#define HYPER_TARGET_SPLIT '^'
#define HYPER_TARGET_SPLIT_STR "^"
#define HYPER_TARGET_SYSTEM '>'
#define HYPER_TARGET_SPAWN '?'
#define MAX_HYPER_LINE 256
#define MAX_HYPER_TOPIC_LINES 4096
#define MAX_HYPER_TOPIC_LAUNCHES 8192
#define MAX_HYPER_TOC 1024
#define MAX_HYPER_IDX 4096
#define MAX_ARG_LEN 256
#endif