//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows7
{
using Win8 = Microsoft.Isam.Esent.Interop.Windows8;
///
/// Index info levels that have been added to the Windows 7 version of ESENT.
///
///
///
public static class Windows7IdxInfo
{
///
/// Introduced in Windows 7. Returns a structure suitable
/// for use by .
///
/// Not currently implemented in this layer.
internal const JET_IdxInfo CreateIndex = (JET_IdxInfo)11;
///
/// Introduced in Windows 7. Returns a JET_INDEXCREATE2 structure (similar to structure,
/// but it contains a member called pSpacehints).
/// This structure is suitable
/// for use by .
///
/// Not currently implemented in this layer.
internal const JET_IdxInfo CreateIndex2 = (JET_IdxInfo)12;
}
}