//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
///
/// Type of progress being reported.
///
public enum JET_SNT
{
///
/// Callback for the beginning of an operation.
///
Begin = 5,
///
/// Callback for operation progress.
///
Progress = 0,
///
/// Callback for the completion of an operation.
///
Complete = 6,
///
/// Callback for failure during the operation.
///
Fail = 3,
///
/// RecoveryStep was used for internal reserved functionality
/// prior to Windows 8. Windows 8 and later no longer use RecoveryStep.
///
RecoveryStep = 8,
}
}