home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_BAS / ED11.ZIP / ED.BAS next >
BASIC Source File  |  1994-01-26  |  838b  |  15 lines

  1. Option Explicit
  2.  
  3. Declare Function GetPrivateProfileString Lib "Kernel" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Integer, ByVal lpFileName As String) As Integer
  4. Declare Function WritePrivateProfileString Lib "Kernel" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpString As Any, ByVal lplFileName As String) As Integer
  5. Declare Function WinHelp Lib "User" (ByVal hWnd As Integer, ByVal lpHelpFile As String, ByVal wCommand As Integer, ByVal dwData As Long) As Integer
  6.  
  7. 'Help Constants
  8. Global Const HELP_QUIT = &H2              'Terminate help
  9. Global Const HELP_INDEX = &H3             'Display index
  10. Global Const HELP_PARTIALKEY = &H105      'call the search engine in winhelp
  11.  
  12. Global EdName As String
  13.  
  14.  
  15.