 |
EnumProcessModules ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The EnumProcessModules function retrieves a handle for each module in the specified process. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL EnumProcessModules(
HANDLE hProcess, // handle to process
HMODULE *lphModule, // array of module handles
DWORD cb, // size of array
LPDWORD lpcbNeeded // number of bytes required
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER EnumProcessModules IN psapi;
INTEGER hProcess,;
STRING @ lphModule,;
INTEGER cb,;
INTEGER @ cbNeeded
|
 |
 |
 |
| Parameters: |
 |
hProcess
[in] Handle to the process.
lphModule
[out] Pointer to the array that receives the list of module handles.
cb
[in] Specifies the size, in bytes, of the lphModule array.
lpcbNeeded
[out] Receives the number of bytes required to store all module handles in the lphModule array. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. |
 |
 |
| My comment: |
 |
Windows NT/2000/XP: Included in Windows NT 4.0 and later.
Windows 95/98/Me: Unsupported. |
 |
 |
| Word Index links for the EnumProcessModules : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-10-09 21:50:56 | | Modified: | 2001-11-26 16:03:44 | Visited in last 7 days: 13 |