//----------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. // //----------------------------------------------------------------------- namespace Microsoft.Isam.Esent.Interop.Windows8 { using Win7 = Microsoft.Isam.Esent.Interop.Windows7; /// /// Index info levels that have been added to the Windows 8 version of ESENT. /// /// /// public static class Windows8IdxInfo { /// /// Introduced in Windows 8. Returns a JET_INDEXCREATE3 structure. This is similar to /// structure, but it contains some additional /// members, and it also uses a locale name in the /// index definition, not an LCID. /// The returned object is suitable for use by . /// /// Not currently implemented in this layer, but provided for completeness to /// match the underlying API layer. internal const JET_IdxInfo InfoCreateIndex3 = (JET_IdxInfo)13; /// /// Introduced in Windows 8. Returns the locale name of the given index. /// internal const JET_IdxInfo LocaleName = (JET_IdxInfo)14; } }