NtDeleteAtom - NtDoc

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

NTSYSCALLAPI
NTSTATUS
NTAPI
NtDeleteAtom(
    _In_ RTL_ATOM Atom
    );

#endif
#endif

View code on GitHub
#ifndef _NTZWAPI_H

NTSYSCALLAPI
NTSTATUS
NTAPI
ZwDeleteAtom(
    _In_ RTL_ATOM Atom
    );

#endif

View code on GitHub

Function NtDeleteAtom remove Atom from Global Atom Table. If Atom's reference counter is greater then 1, function decrements this counter, but Atom stayed in Global Atom Table.

Atom

Atom identifier.

Documented by

See also