// portabledevice.h
typedef enum tagWPD_CAPTURE_MODES {
WPD_CAPTURE_MODE_UNDEFINED,
WPD_CAPTURE_MODE_NORMAL,
WPD_CAPTURE_MODE_BURST,
WPD_CAPTURE_MODE_TIMELAPSE
} WPD_CAPTURE_MODES;
View the official Windows Driver Kit DDI referenceNo description available.
The WPD_CAPTURE_MODES enumeration type describes the capture timing mode of a still image capture.
WPD_CAPTURE_MODE_UNDEFINEDThe capture mode has not been defined.
WPD_CAPTURE_MODE_NORMALNo delay or burst mode should be used.
WPD_CAPTURE_MODE_BURSTSpecifies that a defined number of images should be captured with a defined interval between them. The number of images to capture and time delay between them are specified by the WPD_STILL_IMAGE_BURST_NUMBER and WPD_STILL_IMAGE_BURST_INTERVAL properties.
WPD_CAPTURE_MODE_TIMELAPSEImage capture should use time lapse photography. The number of images and interval between them are described by the WPD_STILL_IMAGE_TIMELAPSE_NUMBER and WPD_STILL_IMAGE_TIMELAPSE_INTERVAL properties.
This enumeration is used by the WPD_STILL_IMAGE_CAPTURE_MODE property.
Structures and Enumeration Types