// sensorscx.h
EVT_SENSOR_DRIVER_STOP_SENSOR EvtSensorDriverStopSensor;
NTSTATUS EvtSensorDriverStopSensor(
SENSOROBJECT Sensor
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This callback function stops the sensor.
SensorA reference to a sensor object.
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.