welsonjs/WelsonJS.Toolkit/EsentInterop/jet_errorinfo.cs
Namhyeon, Go 25aaff14f2 Revert "Remove the native components"
This reverts commit a763e63459.
2025-12-14 18:48:12 +09:00

20 lines
622 B
C#

//-----------------------------------------------------------------------
// <copyright file="jet_errorinfo.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation.
// </copyright>
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows8
{
/// <summary>
/// The valid values of InfoLevel for JetGetErrorInfo.
/// </summary>
public enum JET_ErrorInfo
{
/// <summary>
/// Retrieve information about the specific error passed in pvContext.
/// </summary>
SpecificErr = 1,
}
}