IoOpenDeviceInterfaceRegistryKey - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

NTSTATUS IoOpenDeviceInterfaceRegistryKey(
  [in]  PUNICODE_STRING SymbolicLinkName,
  [in]  ACCESS_MASK     DesiredAccess,
  [out] PHANDLE         DeviceInterfaceRegKey
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-ioopendeviceinterfaceregistrykey)

IoOpenDeviceInterfaceRegistryKey function

Description

The IoOpenDeviceInterfaceRegistryKey routine returns a handle to a registry key for storing information about a particular device interface instance.

Parameters

SymbolicLinkName [in]

Pointer to a string identifying the device interface instance. This string was obtained from a previous call to IoGetDeviceInterfaces, IoGetDeviceInterfaceAlias, or IoRegisterDeviceInterface.

DesiredAccess [in]

Specifies the ACCESS_MASK value that represents the access the caller requires to the key, such as KEY_READ, KEY_WRITE, or KEY_ALL_ACCESS. See ZwCreateKey for a description of each KEY_XXX access right.

DeviceInterfaceRegKey [out]

Pointer to a returned handle to the requested registry key if the call is successful.

Return value

IoOpenDeviceInterfaceRegistryKey returns STATUS_SUCCESS if the call was successful. Possible error return values include the following.

Return code Description
STATUS_OBJECT_NAME_NOT_FOUND The routine was not able to locate a registry key for the device interface instance, probably due to an error in the SymbolicLinkName.
STATUS_OBJECT_PATH_NOT_FOUND The routine was not able to locate a registry key for the device interface instance, probably due to an error in the SymbolicLinkName.
STATUS_INVALID_PARAMETER Possibly indicates an error in the SymbolicLinkName.

Remarks

IoOpenDeviceInterfaceRegistryKey opens a nonvolatile subkey of the registry key for the device interface instance specified by SymbolicLinkName. Drivers can store information in this subkey that is specific to this instance of the device interface, such as the default resolution for a camera. User-mode applications can access this subkey using SetupDi*Xxx* routines.

The driver must call ZwClose to close the handle returned from this routine when access is no longer required.

Callers of IoOpenDeviceInterfaceRegistryKey must be running at IRQL = PASSIVE_LEVEL in the context of a system thread.

See also

ACCESS_MASK

IoGetDeviceInterfaceAlias

IoGetDeviceInterfaces

IoRegisterDeviceInterface

ZwClose