Skip to content

Latest commit

 

History

History
66 lines (51 loc) · 2.02 KB

ne-wdm-driver_regkey_type.md

File metadata and controls

66 lines (51 loc) · 2.02 KB
UID title description tech.root ms.date keywords ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.max-support req.typenames targetos ms.custom f1_keywords topic_type api_type api_location api_name
NE:wdm._DRIVER_REGKEY_TYPE
DRIVER_REGKEY_TYPE
Learn more about: DRIVER_REGKEY_TYPE enumeration
kernel
08/19/2019
DRIVER_REGKEY_TYPE enumeration
DRIVER_REGKEY_TYPE, DRIVER_REGKEY_TYPE, *PDRIVER_REGKEY_TYPE,
wdm.h
Windows 10, version 1803
DRIVER_REGKEY_TYPE, *PDRIVER_REGKEY_TYPE
Windows
19H1
_DRIVER_REGKEY_TYPE
wdm/_DRIVER_REGKEY_TYPE
PDRIVER_REGKEY_TYPE
wdm/PDRIVER_REGKEY_TYPE
DRIVER_REGKEY_TYPE
wdm/DRIVER_REGKEY_TYPE
apiref
HeaderDef
wdm.h
_DRIVER_REGKEY_TYPE
PDRIVER_REGKEY_TYPE
DRIVER_REGKEY_TYPE

DRIVER_REGKEY_TYPE enumeration

-description

Defines values for the type of registry key to be used by a driver. This enumeration is used by the IoOpenDriverRegistryKey function.

-enum-fields

-field DriverRegKeyParameters

The requested registry key is the immutable parameters key for the driver.

-field DriverRegKeyPersistentState

The requested registry key is a location for mutable state to be read/written that will persist across reboots. This mutable state is specific to the internals of the driver and only accessible by the driver itself.

-field DriverRegKeySharedPersistentState

The requested registry key is a location for mutable state to be read/written that will persist across reboots. This mutable state is meant to be shared between the driver and other components. Other components can access this registry key using GetSharedServiceRegistryStateKey. This value is available on Windows Server 2022 and later versions of Windows.

-remarks

-see-also

IoOpenDriverRegistryKey