// storport.h
STORPORT_API BOOLEAN StorPortResume(
[in] PVOID HwDeviceExtension
);
View the official Windows Driver Kit DDI referenceNo description available.
The StorPortResume routine resumes a paused adapter.
HwDeviceExtension [in]A pointer to the hardware device extension. This is a per HBA storage area that the port driver allocates and initializes on behalf of the miniport driver. Miniport drivers usually store HBA-specific information in this extension, such as the state of the HBA and the mapped access ranges for the HBA. This area is available to the miniport driver immediately after the miniport driver calls StorPortInitialize. The port driver frees this memory when it removes the device.
StorPortResume returns TRUE if the miniport driver succeeded in resuming the paused adapter, FALSE if not.