// storport.h
HW_TRACING_ENABLED HwTracingEnabled;
VOID HwTracingEnabled(
PVOID HwDeviceExtension,
[in] BOOLEAN Enabled
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The HwStorTracingEnabled callback routine enables the Storport to notify a miniport that event tracing is enabled.
HwDeviceExtension[in] A pointer to the miniport driver's per-HBA storage area.
Enabled [in]True to enable tracing in the miniport. Otherwise, false.
The name HwStorTracingEnabled is placeholder text for the actual routine name. The actual prototype of this routine is defined in Storport.h as follows:
typedef
VOID
HW_TRACING_ENABLED (
_In_ PVOID HwDeviceExtension,
_In_ BOOLEAN Enabled
);