#ifndef _NTRTL_H
//
// State isolation
//
typedef enum _STATE_LOCATION_TYPE
{
LocationTypeRegistry,
LocationTypeFileSystem,
LocationTypeMaximum
} STATE_LOCATION_TYPE;
View code on GitHub// ntddk.h
typedef enum _STATE_LOCATION_TYPE {
LocationTypeRegistry,
LocationTypeFileSystem,
LocationTypeMaximum
} STATE_LOCATION_TYPE;
View the official Windows Driver Kit DDI referenceThis enumeration is documented in Windows Driver Kit.
Defines values for persisted state locations for device and driver files. This enumeration is used by RtlGetPersistedStateLocation.
LocationTypeRegistryThe device and driver files are stored in the registry.
LocationTypeFileSystemThe device and driver files are stored in the file system.
LocationTypeMaximumReserved.