//-----------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.
// 
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
    /// 
    /// Offsets for JetMove.
    /// 
    public enum JET_Move
    {
        /// 
        /// Move the cursor to the first index entry.
        /// 
        First = -2147483648,
        /// 
        /// Move to the previous index entry.
        /// 
        Previous = -1,
        /// 
        /// Move to the next index entry.
        /// 
        Next = 1,
        /// 
        /// Move to the last index entry.
        /// 
        Last = 0x7fffffff,
    }
}