home *** CD-ROM | disk | FTP | other *** search
/ On Hand / On_Hand_From_Softbank_1994_Release_2_Disc_2_1994.iso / 00202 / s / disk5 / winhelp.tx_ / winhelp.bin
Text File  |  1993-04-28  |  847b  |  18 lines

  1. '   Help engine declarations.
  2.  
  3. '  Commands to pass WinHelp()  
  4. Global Const HELP_CONTEXT = &H1     ' Display topic identified by number in Data
  5. Global Const HELP_QUIT = &H2        ' Terminate help
  6. Global Const HELP_INDEX = &H3       ' Display index
  7. Global Const HELP_HELPONHELP = &H4  ' Display help on using help
  8. Global Const HELP_SETINDEX = &H5    ' Set an alternate Index for help file with more than one index
  9. Global Const HELP_KEY = &H101       ' Display topic for keyword in Data
  10. Global Const HELP_MULTIKEY = &H201  ' Lookup keyword in alternate table and display topic
  11.  
  12. Declare Function WinHelp Lib "User" (ByVal hWnd As Integer, ByVal lpHelpFile As String, ByVal wCommand As Integer, dwData As Any) As Integer
  13.  
  14. Type MULTIKEYHELP 
  15.     mkSize As Integer
  16.     mkKeylist As String * 1
  17.     szKeyphrase As String * 253
  18. End Type