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