HW_TRACING_ENABLED - NtDoc

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

HW_TRACING_ENABLED HwTracingEnabled;

VOID HwTracingEnabled(
       PVOID HwDeviceExtension,
  [in] BOOLEAN Enabled
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-storport-hw_tracing_enabled)

HW_TRACING_ENABLED callback function

Description

The HwStorTracingEnabled callback routine enables the Storport to notify a miniport that event tracing is enabled.

Parameters

HwDeviceExtension

[in] A pointer to the miniport driver's per-HBA storage area.

Enabled [in]

True to enable tracing in the miniport. Otherwise, false.

Remarks

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
    );

See also

HW_INITIALIZATION_DATA