Module32Next Retrieves information about the next module associated with a process or thread.
VB4-32,5,6
Declare Function Module32Next Lib "kernel32" (ByVal hSnapshot As Long, uProcess As MODULEENTRY32) As Long |
VB.NET
System.Diagnostics.Process.Modules |
Operating Systems Supported |
Requires Windows 2000 or later; Requires Windows 95 or later |
- hSnapshot
[in] Handle to the snapshot returned from a previous call to the CreateToolhelp32Snapshot function.
- lpme
[out] Pointer to a MODULEENTRY32 structure. |
Returns TRUE if the next entry of the module list has been copied to the buffer or FALSE otherwise. The ERROR_NO_MORE_FILES error value is returned by the GetLastError function if no more modules exist. |
|