UdecxWdfDeviceResetComplete - NtDoc

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

VOID UdecxWdfDeviceResetComplete(
  WDFDEVICE UdeWdfDevice
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-udecxwdfdevice-udecxwdfdeviceresetcomplete)

UdecxWdfDeviceResetComplete function

Description

Informs the USB device emulation class extension (UdeCx) that the reset operation on the specified controller has competed.

Parameters

UdeWdfDevice

A handle to a framework device object that represents the controller that has been reset. The client driver initialized this object in the previous call to UdecxWdfDeviceAddUsbDeviceEmulation.

Remarks

When the class extension calls the EVT_UDECX_WDF_DEVICE_RESET callback function, that call is asynchronous. The client driver must call UdecxWdfDeviceResetComplete to notify the class extension when the reset operation is complete with appropriate status information.

See also

Architecture: USB Device Emulation (UDE)

EVT_UDECX_WDF_DEVICE_RESET

Write a UDE client driver