EVT_HIDSPICX_RESETDEVICE - NtDoc

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

EVT_HIDSPICX_RESETDEVICE EvtHidspicxResetdevice;

NTSTATUS EvtHidspicxResetdevice(
  WDFDEVICE Device
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-hidspicx-evt_hidspicx_resetdevice)

Description

The EVT_HIDSPICX_RESETDEVICE callback function is implemented by the client driver to respond to requests to reset the device.

Parameters

Device

A handle to a framework device object the client driver obtained from a previous call to WdfDeviceCreate.

Return value

NTSTATUS value indicating whether the reset was successful or not.

Remarks

The class extension will call this function only while the hardware is in a working state, at passive IRQL.

The client driver synchronously resets the device and returns a status code indicating whether the reset was successful.

See also