//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows7
{
///
/// Exception action that have been added to the Windows 7 version of ESENT.
///
public static class Windows7ExceptionAction
{
///
/// Introduced in Windows 7. Use the Windows RaiseFailFastException API to force a crash.
///
internal const JET_ExceptionAction FailFast = (JET_ExceptionAction)0x00000004;
}
}