// sensorsdef.h
typedef enum SENSOR_STATE {
SensorState_Initializing,
SensorState_Idle,
SensorState_Active,
SensorState_Error
} ;
View the official Windows Driver Kit DDI referenceNo description available.
This enumeration represents the valid states of a sensor.
SensorState_InitializingIndicates that the sensor is initializing.
SensorState_IdleIndicates that the sensor is idle
SensorState_ActiveIndicates that the sensor is active.
SensorState_ErrorIndicates that the sensor is in an error state.