// sensorsdef.h
typedef enum PEDOMETER_STEP_TYPE {
PedometerStepType_Unknown,
PedometerStepType_Walking,
PedometerStepType_Running,
PedometerStepType_Max,
PedometerStepType_Force_Dword
} ;
View the official Windows Driver Kit DDI referenceNo description available.
This enumeration represents the step types reported by the pedometer.
PedometerStepType_UnknownThe pedometer cannot determine the step type.
PedometerStepType_WalkingIndicates a step type associated with walking.
PedometerStepType_RunningIndicates a step type associated with running.
PedometerStepType_MaxIndicates that the step type is generating maximum sensor values. In this scenario, the pedometer doesn't report the step type.
PedometerStepType_Force_DwordUsed to force the PEDOMETER_STEP_TYPE enum to a 32-bit data type (a DWORD).
For more information about the sensor data fields that use this enumeration, see Pedometer data fields.