DSInternals/Src/Microsoft.Isam.Esent.Interop/jet_objinfo.cs

27 lines
794 B
C#
Raw Normal View History

2016-01-23 21:00:26 +00:00
//-----------------------------------------------------------------------
// <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,
}
}