ATOM_INFORMATION_CLASS - NtDoc

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

typedef enum _ATOM_INFORMATION_CLASS
{
    AtomBasicInformation,
    AtomTableInformation
} ATOM_INFORMATION_CLASS;

#endif
#endif

View code on GitHub

Enumeration type ATOM_INFORMATION_CLASS is used in a call to function NtQueryInformationAtom.

AtomBasicInformation

Result of call contains ATOM_BASIC_INFORMATION structure.

AtomTableInformation

Result of call contains ATOM_TABLE_INFORMATION structure.

Documented by

See also