// wudfddi_types.h
typedef enum _WDF_PROPERTY_STORE_ROOT_CLASS {
WdfPropertyStoreRootClassHardwareKey,
WdfPropertyStoreRootClassSoftwareKey,
WdfPropertyStoreRootClassDeviceInterfaceKey,
WdfPropertyStoreRootClassLegacyHardwareKey
} WDF_PROPERTY_STORE_ROOT_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
[Warning: UMDF 2 is the latest version of UMDF and supersedes UMDF 1. All new UMDF drivers should be written using UMDF 2. No new features are being added to UMDF 1 and there is limited support for UMDF 1 on newer versions of Windows 10. Universal Windows drivers must use UMDF 2. For more info, see Getting Started with UMDF.]
The WDF_PROPERTY_STORE_ROOT_CLASS enumeration identifies the registry keys that UMDF property stores represent.
WdfPropertyStoreRootClassHardwareKeyThe property store represents a device's hardware key.
WdfPropertyStoreRootClassSoftwareKeyThe property store represents a driver's software key.
WdfPropertyStoreRootClassDeviceInterfaceKeyThe property store represents the key for an instance of a device interface class.
WdfPropertyStoreRootClassLegacyHardwareKeyThe property store represents the DEVICEMAP key, which is used by only a few older drivers.
The WDF_PROPERTY_STORE_ROOT_CLASS enumeration is used in the WDF_PROPERTY_STORE_ROOT structure.