// 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 referenceNo description available.
This topic describes the DEVICE_BUS_SPECIFIC_RESET_HANDLER callback function.
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.