#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
typedef struct _ATOM_TABLE_INFORMATION
{
ULONG NumberOfAtoms;
_Field_size_(NumberOfAtoms) RTL_ATOM Atoms[1];
} 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.