//-----------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.
// 
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows81
{
    using System;
    /// 
    /// ColumnDatabase info levels that have been added to the Windows 8.1 version of ESENT.
    /// 
    public static class Windows81DbInfo
    {
        /// 
        /// Introduced in Windows 8.1.
        /// Returns the filesize of the database that is allocated by the operating system, in pages.
        /// This may be smaller than  if the file system supports
        /// compressed or sparse files (Int32).
        /// 
        public const JET_DbInfo FilesizeOnDisk = (JET_DbInfo)21;
    }
}