SYSTEM_HANDLECOUNT_INFORMATION - NtDoc

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

/**
 * The SYSTEM_HANDLECOUNT_INFORMATION structure provides global counts of
 * processes, threads, and handles in the system.
 */
typedef struct _SYSTEM_HANDLECOUNT_INFORMATION
{
    ULONG ProcessCount;
    ULONG ThreadCount;
    ULONG HandleCount;
} SYSTEM_HANDLECOUNT_INFORMATION, *PSYSTEM_HANDLECOUNT_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.