// sensorscx.h
EVT_SENSOR_DRIVER_SET_DATA_THRESHOLDS EvtSensorDriverSetDataThresholds;
NTSTATUS EvtSensorDriverSetDataThresholds(
[in] SENSOROBJECT Sensor,
[in] PSENSOR_COLLECTION_LIST pThresholds
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This callback function sets the threshold for one or more data fields associated with a sensor.
Sensor [in]A reference to a sensor object.
pThresholds [in]A list of thresholds and their values that are set for the Sensor. For more information, see SENSOR_COLLECTION_LIST.
This function returns STATUS_SUCCESS when completed successfully.
Note The class extension (CX) only uses the NT_SUCCESS macro to determine if the call to the driver’s Evt function was successful, but does not take any action if the function failed or does not return STATUS_SUCCESS.
This function must be implemented by the driver and is called by the class extension.