PROCESS_GROUP_INFORMATION - NtDoc

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

/**
 * The PROCESS_GROUP_INFORMATION structure is used to query the group numbers associated with a process.
 */
typedef struct _PROCESS_GROUP_INFORMATION
{
    _Field_size_(GroupCount) USHORT Groups[1];
} PROCESS_GROUP_INFORMATION, *PPROCESS_GROUP_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.