mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-27 01:03:18 +00:00
27 lines
794 B
C#
Vendored
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,
|
|
}
|
|
}
|