// srb.h
PHW_INITIALIZE PhwInitialize;
BOOLEAN PhwInitialize(
[in] PVOID DeviceExtension
)
{...}
View the official Windows Driver Kit DDI reference
No description available.
The PHW_INITIALIZE routine prototype declares a routine that initializes the miniport driver after a reboot or power failure occurs.
DeviceExtension
[in]Pointer to the miniport driver's per-HBA storage area.
If the operation succeeds, the initialization routine returns TRUE. Otherwise, the initialize routine returns FALSE.
The initialization routine for both SCSI and StorPort miniport drivers are declared using this prototype.
For more information about the SCSI miniport driver initialization routine see HwScsiInitialize.
For more information about the miniport driver initialization routine that is used with the StorPort driver see HwStorInitialize.