41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="jet_snt.cs" company="Microsoft Corporation">
|
|
// Copyright (c) Microsoft Corporation.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace Microsoft.Isam.Esent.Interop
|
|
{
|
|
/// <summary>
|
|
/// Type of progress being reported.
|
|
/// </summary>
|
|
public enum JET_SNT
|
|
{
|
|
/// <summary>
|
|
/// Callback for the beginning of an operation.
|
|
/// </summary>
|
|
Begin = 5,
|
|
|
|
/// <summary>
|
|
/// Callback for operation progress.
|
|
/// </summary>
|
|
Progress = 0,
|
|
|
|
/// <summary>
|
|
/// Callback for the completion of an operation.
|
|
/// </summary>
|
|
Complete = 6,
|
|
|
|
/// <summary>
|
|
/// Callback for failure during the operation.
|
|
/// </summary>
|
|
Fail = 3,
|
|
|
|
/// <summary>
|
|
/// RecoveryStep was used for internal reserved functionality
|
|
/// prior to Windows 8. Windows 8 and later no longer use RecoveryStep.
|
|
/// </summary>
|
|
RecoveryStep = 8,
|
|
}
|
|
}
|