KEY_VALUE_LAYER_INFORMATION - NtDoc

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

// private
/**
 * The KEY_VALUE_LAYER_INFORMATION structure defines the flags for a value entry of a registry key.
 */
typedef struct _KEY_VALUE_LAYER_INFORMATION
{
    ULONG IsTombstone : 1;
    ULONG Reserved : 31;
} KEY_VALUE_LAYER_INFORMATION, *PKEY_VALUE_LAYER_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.