DEVICE_BUS_SPECIFIC_RESET_HANDLER - NtDoc

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

DEVICE_BUS_SPECIFIC_RESET_HANDLER DeviceBusSpecificResetHandler;

NTSTATUS DeviceBusSpecificResetHandler(
  [in] PVOID InterfaceContext,
  [in] const GUID *BusType,
  [in] DEVICE_BUS_SPECIFIC_RESET_TYPE ResetTypeSelected,
  [in] PBUS_SPECIFIC_RESET_FLAGS Flags,
  [in] PVOID ResetParameters
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdm-device_bus_specific_reset_handler)

Description

This topic describes the DEVICE_BUS_SPECIFIC_RESET_HANDLER callback function.

Parameters

InterfaceContext [in]

Defines the PVOID parameter InterfaceContext.

BusType [in]

Defines the GUID parameter BusType.

ResetTypeSelected [in]

Defines the DEVICE_BUS_SPECIFIC_RESET_TYPE parameter ResetTypeSelected.

Flags [in]

Defines the PBUS_SPECIFIC_RESET_FLAGS parameter Flags.

ResetParameters [in]

Defines the PVOID parameter ResetParameters.

Return value

NTSTATUS

Remarks

See also