OBJECT_HANDLE_FLAG_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTOBAPI_H

typedef struct _OBJECT_HANDLE_FLAG_INFORMATION
{
    BOOLEAN Inherit;
    BOOLEAN ProtectFromClose;
} OBJECT_HANDLE_FLAG_INFORMATION, *POBJECT_HANDLE_FLAG_INFORMATION;

#endif

View code on GitHub

This structure controls handle inheritance and protection attributes.

Applicable to

Members

Inherit

A boolean indicating whether the handle is marked as inheritable.

See also

ProtectFromClose

A boolean indicating whether the handle is marked as protected from closing.

See also