home *** CD-ROM | disk | FTP | other *** search
/ The Education Master 1994 (4th Edition) / EDUCATIONS_MASTER_4TH_EDITION.bin / files / progmisc / qparser2 / lib / help.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-17  |  783 b   |  33 lines

  1. /*  help.h
  2.  
  3.     QCAD Systems, Inc.
  4.  
  5.     Provides help based on a helpfile and a topic.
  6.     The initial lines of a helpfile are ignored; help starts with
  7.  
  8.      @TOPIC
  9.  
  10.     left-adjusted in a line, where TOPIC is some topic string.  That
  11.     help text ends on the EOF or the next @ line.
  12.  
  13.     You may want to choose a different directory for the Qparser
  14.             help files -- these are defined below.
  15.  
  16.     */
  17.  
  18. #include "protos.h"
  19.  
  20. #ifdef UNIX
  21. #  define DEFAULT_HELP  "/usr/local/src/qphelp.hlp"
  22. #else   /* MS DOS */
  23. #  define DEFAULT_HELP  "C:\\qparser\\qphelp.hlp"
  24. #endif
  25.  
  26. /* how many lines to show on a screen during help */
  27. #define SHOWLINES 18
  28. /* environment variable, if any */
  29. #define QPHELP  "QPHELP"
  30.  
  31. extern void help _XX_((char *topic));
  32.  
  33.