PHW_STARTIO - NtDoc

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

PHW_STARTIO PhwStartio;

BOOLEAN PhwStartio(
  [in] PVOID DeviceExtension,
  [in] PSCSI_REQUEST_BLOCK Srb
)
{...}

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-srb-phw_startio)

PHW_STARTIO callback

Description

The PHW_INITIALIZE routine prototype declares a routine that initializes the miniport driver after a reboot or power failure occurs.

Parameters

DeviceExtension [in]

Pointer to the miniport driver's per-HBA storage area.

Srb [in]

Pointer to the SCSI request block to be started.

Return value

The start I/O routine returns TRUE to acknowledge receipt of the SCSI request block (SRB). If the start I/O routine does not receive a well-formed SRB, it returns FALSE.

Remarks

The start routine for both SCSI and StorPort miniport drivers are declared using this prototype.

For more information about the SCSI miniport driver's start I/O routine see HwScsiStartIo.

For more information about the miniport driver's start I/O routine that is used with the StorPort driver see HwStorStartIo.

See also

HwScsiStartIo

HwStorStartIo