// 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 referenceNo description available.
Starts retrieving the history recorded so far in the sensor.
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.
Returns NTSTATUS.
//Declaration
EVT_SENSOR_DRIVER_START_HISTORY_RETRIEVAL EvtSensorDriverStartHistoryRetrieval;
// Definition
NTSTATUS EvtSensorDriverStartHistoryRetrieval
(
SENSOROBJECT Sensor
PSENSOR_COLLECTION_LIST pHistory
ULONG HistorySizeInBytes
)
{...}