mirror of
				https://github.com/gnh1201/welsonjs.git
				synced 2025-10-31 04:51:17 +00:00 
			
		
		
		
	Add the package ManagedEsent (microsoft/ManagedEsent@d358c07), and WelsonJS.Esent
		
			
				
	
	
		
			35 lines
		
	
	
		
			888 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			888 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| //-----------------------------------------------------------------------
 | |
| // <copyright file="jet_move.cs" company="Microsoft Corporation">
 | |
| //     Copyright (c) Microsoft Corporation.
 | |
| // </copyright>
 | |
| //-----------------------------------------------------------------------
 | |
| 
 | |
| namespace Microsoft.Isam.Esent.Interop
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Offsets for JetMove.
 | |
|     /// </summary>
 | |
|     public enum JET_Move
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Move the cursor to the first index entry.
 | |
|         /// </summary>
 | |
|         First = -2147483648,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Move to the previous index entry.
 | |
|         /// </summary>
 | |
|         Previous = -1,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Move to the next index entry.
 | |
|         /// </summary>
 | |
|         Next = 1,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Move to the last index entry.
 | |
|         /// </summary>
 | |
|         Last = 0x7fffffff,
 | |
|     }
 | |
| }
 |