WDF_PROPERTY_STORE_ROOT_CLASS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wudfddi_types-_wdf_property_store_root_class)

_WDF_PROPERTY_STORE_ROOT_CLASS enumeration

Description

[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.

Constants

WdfPropertyStoreRootClassHardwareKey

The property store represents a device's hardware key.

WdfPropertyStoreRootClassSoftwareKey

The property store represents a driver's software key.

WdfPropertyStoreRootClassDeviceInterfaceKey

The property store represents the key for an instance of a device interface class.

WdfPropertyStoreRootClassLegacyHardwareKey

The property store represents the DEVICEMAP key, which is used by only a few older drivers.

Remarks

The WDF_PROPERTY_STORE_ROOT_CLASS enumeration is used in the WDF_PROPERTY_STORE_ROOT structure.

See also

WDF_PROPERTY_STORE_ROOT