PHW_INITIALIZE - NtDoc

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

PHW_INITIALIZE PhwInitialize;

BOOLEAN PhwInitialize(
  [in] PVOID DeviceExtension
)
{...}

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

PHW_INITIALIZE 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.

Return value

If the operation succeeds, the initialization routine returns TRUE. Otherwise, the initialize routine returns FALSE.

Remarks

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.

See also

HwScsiInitialize

HwStorInitialize