// portabledevice.h
typedef enum tagWPD_OPERATION_STATES {
WPD_OPERATION_STATE_UNSPECIFIED,
WPD_OPERATION_STATE_STARTED,
WPD_OPERATION_STATE_RUNNING,
WPD_OPERATION_STATE_PAUSED,
WPD_OPERATION_STATE_CANCELLED,
WPD_OPERATION_STATE_FINISHED,
WPD_OPERATION_STATE_ABORTED
} WPD_OPERATION_STATES;
View the official Windows Driver Kit DDI referenceNo description available.
The WPD_OPERATION_STATES enumeration values describe the current state of an operation in progress.
WPD_OPERATION_STATE_UNSPECIFIEDThe current operation is in an unspecified state (not set) and unknown.
WPD_OPERATION_STATE_STARTEDThe operation is started.
WPD_OPERATION_STATE_RUNNINGThe operation is running.
WPD_OPERATION_STATE_PAUSEDThe operation is paused.
WPD_OPERATION_STATE_CANCELLEDThe operation is canceled.
WPD_OPERATION_STATE_FINISHEDThe operation is finished.
WPD_OPERATION_STATE_ABORTEDThe operation is aborted.
These values are received in an application-defined callback.
Structures and Enumeration Types