SensorsCxSensorDataReady - NtDoc

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

VOID SensorsCxSensorDataReady(
  [in] SENSOROBJECT            Sensor,
  [in] PSENSOR_COLLECTION_LIST pSensorData
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-sensorscx-sensorscxsensordataready)

SensorsCxSensorDataReady function

Description

This function notifies the class extension that the driver has retrieved data.

Parameters

Sensor [in]

A reference to a sensor object.

pSensorData [in]

A list of sensor properties. For more information, see SENSOR_COLLECTION_LIST.

Remarks

This function is implemented by the class extension and the driver must call it. When batch latency expires for sensor drivers that support data batching, SensorsCxSensorDataReady is called repeatedly until all the batched data samples are delivered to the client. For more information about the callback function related to batch latency, see EvtSensorSetBatchLatency.

See also