mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-02-05 05:31:29 +00:00
27 lines
794 B
C#
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,
|
|||
|
}
|
|||
|
}
|