EVT_SENSOR_DRIVER_START_HISTORY_RETRIEVAL - NtDoc

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

EVT_SENSOR_DRIVER_START_HISTORY_RETRIEVAL EvtSensorDriverStartHistoryRetrieval;

NTSTATUS EvtSensorDriverStartHistoryRetrieval(
  [in]      SENSOROBJECT Sensor,
  [in, out] PSENSOR_COLLECTION_LIST pHistory,
  [in]      ULONG HistorySizeInBytes
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-sensorscx-evt_sensor_driver_start_history_retrieval)

EVT_SENSOR_DRIVER_START_HISTORY_RETRIEVAL callback function

Description

Starts retrieving the history recorded so far in the sensor.

Parameters

Sensor [in]

A reference to a sensor object.

pHistory [in, out]

Pointer to the sensor collection list.

HistorySizeInBytes [in]

The size of the pHistory, in bytes.

Return value

Returns NTSTATUS.

Prototype

//Declaration

EVT_SENSOR_DRIVER_START_HISTORY_RETRIEVAL EvtSensorDriverStartHistoryRetrieval;

// Definition

NTSTATUS EvtSensorDriverStartHistoryRetrieval
(
    SENSOROBJECT Sensor
    PSENSOR_COLLECTION_LIST pHistory
    ULONG HistorySizeInBytes
)
{...}