UrsDeviceInitInitialize - NtDoc

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

NTSTATUS UrsDeviceInitInitialize(
  PWDFDEVICE_INIT DeviceInit
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ursdevice-ursdeviceinitinitialize)

UrsDeviceInitInitialize function

Description

Initializes device initialization operations when the Plug and Play (PnP) manager reports the existence of a device.

Parameters

DeviceInit

A pointer to a framework-allocated WDFDEVICE_INIT structure.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

The client driver for the dual-role controller calls this method in its EvtDriverDeviceAdd implementation before it calls WdfDeviceCreate and UrsDeviceInitialize. For code example, see UrsDeviceInitialize.

See also

WdfDeviceCreate