#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
typedef struct _ATOM_BASIC_INFORMATION
{
USHORT UsageCount;
USHORT Flags;
USHORT NameLength;
_Field_size_bytes_(NameLength) WCHAR Name[1];
} ATOM_BASIC_INFORMATION, *PATOM_BASIC_INFORMATION;
View code on GitHub
ATOM_BASIC_INFORMATION
structure is returned as a result of call NtQueryInformationAtom
with AtomBasicInformation
information class.
Internal Atom counter state. This value increments at every NtAddAtom
call for current Atom, and it's decremented on every NtDeleteAtom
function call.
(?), Only lowest bit is used.
Size of Name
array, in bytes.
Atom name.