The OperationResultCode enumeration defines values that describe the result of an update operation.
typedef enum tagOperationResultCode
{
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5,
} OperationResultCode;
orcNotStarted: The operation is not started.
orcInProgress: The operation is in progress.
orcSucceeded: The operation was completed successfully.
orcSucceededWithErrors: The operation is complete, but one or more errors occurred during the operation. The results might be incomplete.
orcFailed: The operation failed to complete.
orcAborted: The operation is canceled.