ATOM_TABLE_INFORMATION - NtDoc

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

/**
 * The ATOM_TABLE_INFORMATION structure contains information about all Atoms from the system atom table.
 */
typedef struct _ATOM_TABLE_INFORMATION
{
    ULONG NumberOfAtoms; // The number of atoms in the atom table.
    _Field_size_(NumberOfAtoms) RTL_ATOM Atoms[1]; // Array of atom identifiers.
} ATOM_TABLE_INFORMATION, *PATOM_TABLE_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.

NTinternals.net (undocumented.ntinternals.net)

ATOM_TABLE_INFORMATION describes Global Atom Table. Is returned as a result of call NtQueryInformationAtom with AtomTableInformation information class.

NumberOfAtoms

Number of members in Atoms array.

Atoms[1]

Array of Global Atoms.

Documented by

See also