home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / poptext.zip / POPTXT22.ZIP / HYPERHLP.DOC < prev    next >
Text File  |  1989-08-13  |  1KB  |  36 lines

  1. unit hyperhlp;
  2.  
  3. {*********************************************************}
  4. {*** Interface Section for                      **********}
  5. {*** Hyperhlp.TPU                               **********}
  6. {*** (C) 1989 Tone Zone Computing               **********}
  7. {*** Permission granted to registered users     **********}
  8. {*** to incorporate into Turbo Pascal Programs  **********}
  9. {*********************************************************}
  10.  
  11.  
  12. interface
  13.  
  14.  
  15. Uses Dos,          {Standard Boorland Unit}
  16.      CRT,          {Standard Boorland Unit}
  17.      SCREENIO,     {Windows, and Key Routines}
  18.      HelpDef,      {Standard Definitions for HelpEd}
  19.      HYPFW,        {Writing and Highlighting Routines}
  20.      Keynames;     {Names of all the keys you could press.}
  21.  
  22.  
  23. procedure PopTextCard(x:byte);
  24. {**** Usage :  PopTextCard(nodenumber);
  25.         Engages the help utility and enters the user into
  26.         help screen 'x' }
  27.  
  28.  
  29. function openhelpfile(s:string):integer;
  30. {**** Usage : x:=Openhelpfile(filevar);
  31.    Assigns the file (filevar) to be the current helpfile}
  32.  
  33. function closehelpfile:integer;
  34. {**** Usage : x:=Closehelpfile;
  35.     Closes the file and resets the POPTEXT system.}
  36.