 |
GetProcessIoCounters ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves accounting information for all I/O operations performed by the specified process. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL WINAPI GetProcessIoCounters(
__in HANDLE hProcess,
__out PIO_COUNTERS lpIoCounters
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GetProcessIoCounters IN kernel32;
INTEGER hProcess,;
STRING @lpIoCounters
|
 |
 |
 |
| Parameters: |
 |
hProcess
A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.
lpIoCounters
A pointer to an IO_COUNTERS structure that receives the I/O accounting information for the process.
|
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is nonzero. |
 |
 |
| Usage: |
 |
cBuffer = REPLICATE(CHR(0), 48) && IO_COUNTERS structure
= GetProcessIoCounters(hProcess, @cBuffer)
|
 |
 |
| My comment: |
 |
| See also: GetProcessTimes, GetProcessVersion, GetProcessMemoryInfo |
 |
 |
| Word Index links for the GetProcessIoCounters : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2008-03-26 17:11:14 | | Modified: | 2008-03-26 17:20:20 | Visited in last 7 days: 18 |