ERROR_ADVISE_MESSAGE_TYPE enumeration (photoacquire.h)

The ERROR_ADVISE_MESSAGE_TYPE enumeration type indicates the type of error values that can be passed to the nMessageType parameter of IPhotoAcquireProgressCB::ErrorAdvise.

Syntax

typedef enum tagERROR_ADVISE_MESSAGE_TYPE {
  PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL = 0,
  PHOTOACQUIRE_ERROR_RETRYCANCEL = 1,
  PHOTOACQUIRE_ERROR_YESNO = 2,
  PHOTOACQUIRE_ERROR_OK = 3
} ERROR_ADVISE_MESSAGE_TYPE;

Constants

 
PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL
Value: 0
Specifies that the error that occurred requires a Skip, Retry, or Cancel response. The pnErrorAdviseResult parameter to IPhotoAcquireProgressDialogCB::ErrorAdvise must be one of the following: PHOTOACQUIRE_RESULT_SKIP, PHOTOACQUIRE_RESULT_SKIP_ALL, PHOTOACQUIRE_RESULT_RETRY, or PHOTOACQUIRE_RESULT_ABORT.
PHOTOACQUIRE_ERROR_RETRYCANCEL
Value: 1
Specifies that the error that occurred requires a Retry or Cancel response. The pnErrorAdviseResult parameter to IPhotoAcquireProgressDialogCB::ErrorAdvise must be one of the following: PHOTOACQUIRE_RESULT_RETRY or PHOTOACQUIRE_RESULT_ABORT.
PHOTOACQUIRE_ERROR_YESNO
Value: 2
Specifies that the error that occurred requires a Yes or No response. The pnErrorAdviseResult parameter to IPhotoAcquireProgressDialogCB::ErrorAdvise must be one of the following: PHOTOACQUIRE_RESULT_YES or PHOTOACQUIRE_RESULT_NO.
PHOTOACQUIRE_ERROR_OK
Value: 3
Specifies that the error that occurred requires an OK response. The pnErrorAdviseResult parameter to IPhotoAcquireProgressDialogCB::ErrorAdvise must be PHOTOACQUIRE_RESULT_OK.

Requirements

Requirement Value
Header photoacquire.h

See also

ERROR_ADVISE_RESULT

Enumeration Types

IPhotoAcquireProgressCB::ErrorAdvise