home *** CD-ROM | disk | FTP | other *** search
/ The Mother of All Windows Books / CD-MOM.iso / cd_mom / newsletr / vbz / vbz1-3 / zaplib.bas < prev    next >
BASIC Source File  |  1993-04-25  |  385b  |  15 lines

  1. DefInt A-Z
  2.  
  3. Type MODULEENTRY
  4.     dwSize As Long          'size of the moduleentry struc
  5.     szModule As String * 10
  6.     hModule As Integer
  7.     wcUsage As Integer
  8.     szExePath As String * 256
  9.     wNext As Integer
  10. End Type
  11.  
  12. Declare Function ModuleFirst Lib "Toolhelp.dll" (lpModule As MODULEENTRY)
  13. Declare Function ModuleNext Lib "Toolhelp.dll" (lpModule As MODULEENTRY)
  14.  
  15.