DSInternals/Src/Microsoft.Isam.Esent.Interop/jet_objinfo.cs
2016-01-24 09:59:40 +01:00

27 lines
794 B
C#
Vendored

//-----------------------------------------------------------------------
// <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,
}
}