// sensorscx.h
VOID SensorsCxSensorDataReady(
[in] SENSOROBJECT Sensor,
[in] PSENSOR_COLLECTION_LIST pSensorData
);
View the official Windows Driver Kit DDI referenceNo description available.
This function notifies the class extension that the driver has retrieved data.
Sensor [in]A reference to a sensor object.
pSensorData [in]A list of sensor properties. For more information, see SENSOR_COLLECTION_LIST.
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.