mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-02-04 13:11:33 +00:00
20 lines
622 B
C#
Vendored
20 lines
622 B
C#
Vendored
//-----------------------------------------------------------------------
|
|
// <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,
|
|
}
|
|
}
|