#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;
View code on GitHubNo description available.
ATOM_TABLE_INFORMATION describes Global Atom Table. Is returned as a result of call NtQueryInformationAtom with AtomTableInformation information class.
Number of members in Atoms array.
Array of Global Atoms.