// ---------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------
//
//
// ---------------------------------------------------------------------
namespace Microsoft.Database.Isam
{
using System;
///
/// Flags for unicode index creation
///
[Flags]
internal enum UnicodeIndexFlags
{
///
/// No options.
///
None = 0,
///
/// Ignore case.
///
CaseInsensitive = 0x00000001, // NORM_IGNORECASE
///
/// Ignore nonspacing chars.
///
AccentInsensitive = 0x00000002, // NORM_IGNORENONSPACE
///
/// Ignore symbols.
///
IgnoreSymbols = 0x00000004, // NORM_IGNORESYMBOLS
///
/// Ignore kanatype.
///
KanaInsensitive = 0x00010000, // NORM_IGNOREKANATYPE
///
/// Ignore width.
///
WidthInsensitive = 0x00020000, // NORM_IGNOREWIDTH
///
/// Treat punctuation the same as symbols.
///
StringSort = 0x00001000, // SORT_STRINGSORT
}
}