home *** CD-ROM | disk | FTP | other *** search
- /* help.h
-
- QCAD Systems, Inc.
-
- Provides help based on a helpfile and a topic.
- The initial lines of a helpfile are ignored; help starts with
-
- @TOPIC
-
- left-adjusted in a line, where TOPIC is some topic string. That
- help text ends on the EOF or the next @ line.
-
- You may want to choose a different directory for the Qparser
- help files -- these are defined below.
-
- */
-
- #include "protos.h"
-
- #ifdef UNIX
- # define DEFAULT_HELP "/usr/local/src/qphelp.hlp"
- #else /* MS DOS */
- # define DEFAULT_HELP "C:\\qparser\\qphelp.hlp"
- #endif
-
- /* how many lines to show on a screen during help */
- #define SHOWLINES 18
- /* environment variable, if any */
- #define QPHELP "QPHELP"
-
- extern void help _XX_((char *topic));
-