mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-07-11 03:03:10 +00:00
Add the package ManagedEsent (microsoft/ManagedEsent@d358c07), and WelsonJS.Esent
20 lines
622 B
C#
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,
|
|
}
|
|
}
|