ERROR_ADVISE_RESULT enumeration (photoacquire.h)

The ERROR_ADVISE_RESULT enumeration type indicates the type of error values that can be assigned to the pnErrorAdviseResult parameter of IPhotoAcquireProgressCB::ErrorAdvise.

Syntax

typedef enum tagERROR_ADVISE_RESULT {
  PHOTOACQUIRE_RESULT_YES = 0,
  PHOTOACQUIRE_RESULT_NO = 1,
  PHOTOACQUIRE_RESULT_OK = 2,
  PHOTOACQUIRE_RESULT_SKIP = 3,
  PHOTOACQUIRE_RESULT_SKIP_ALL = 4,
  PHOTOACQUIRE_RESULT_RETRY = 5,
  PHOTOACQUIRE_RESULT_ABORT = 6
} ERROR_ADVISE_RESULT;

Constants

 
PHOTOACQUIRE_RESULT_YES
Value: 0
Specifies a Yes response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_YESNO.
PHOTOACQUIRE_RESULT_NO
Value: 1
Specifies a No response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_YESNO.
PHOTOACQUIRE_RESULT_OK
Value: 2
Specifies an OK response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_OK.
PHOTOACQUIRE_RESULT_SKIP
Value: 3
Specifies a Skip response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL.
PHOTOACQUIRE_RESULT_SKIP_ALL
Value: 4
Specifies a Skip All response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL.
PHOTOACQUIRE_RESULT_RETRY
Value: 5
Specifies a Retry response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL or PHOTOACQUIRE_ERROR_RETRYCANCEL.
PHOTOACQUIRE_RESULT_ABORT
Value: 6
Specifies a Cancel response to an error dialog. Valid only if the nMessageType parameter to IPhotoAcquireProgressCB::ErrorAdvise is PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL or PHOTOACQUIRE_ERROR_RETRYCANCEL.

Remarks

The type of response allowed is of type ERROR_ADVISE_MESSAGE_TYPE, and indicated by the nMessageType parameter of IPhotoAcquireProgressCB::ErrorAdvise.

Requirements

Requirement Value
Header photoacquire.h

See also

ERROR_ADVISE_MESSAGE_TYPE

Enumeration Types

IPhotoAcquireProgressCB::ErrorAdvise