PROCESS_HANDLE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H

typedef struct _PROCESS_HANDLE_INFORMATION
{
    ULONG HandleCount;
    ULONG HandleCountHighWatermark;
} PROCESS_HANDLE_INFORMATION, *PPROCESS_HANDLE_INFORMATION;

#endif

View code on GitHub

This structure defines handle statistics for the process.

Applicable to

Members

HandleCount

The current number of handles in the process's handle table.

HandleCountHighWatermark

The historical highest number of handles in the process's handle table.