welsonjs/WelsonJS.Toolkit/EsentInterop/jet_objinfo.cs
2025-06-24 17:55:34 +09:00

27 lines
794 B
C#

//-----------------------------------------------------------------------
// <copyright file="jet_objinfo.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation.
// </copyright>
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
/// <summary>
/// Info levels for retrieving object info.
/// </summary>
internal enum JET_ObjInfo
{
/// <summary>
/// Retrieve a JET_OBJINFOLIST containing information
/// about all object in the table.
/// </summary>
ListNoStats = 1,
/// <summary>
/// Retrieve a JET_OBJINFO containing information
/// about all object in the table.
/// </summary>
NoStats = 5,
}
}