mirror of
				https://github.com/gnh1201/welsonjs.git
				synced 2025-10-31 12:57:31 +00:00 
			
		
		
		
	Add the package ManagedEsent (microsoft/ManagedEsent@d358c07), and WelsonJS.Esent
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| //-----------------------------------------------------------------------
 | |
| // <copyright file="jet_snt.cs" company="Microsoft Corporation">
 | |
| //     Copyright (c) Microsoft Corporation.
 | |
| // </copyright>
 | |
| //-----------------------------------------------------------------------
 | |
| 
 | |
| namespace Microsoft.Isam.Esent.Interop
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Type of progress being reported.
 | |
|     /// </summary>
 | |
|     public enum JET_SNT
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Callback for the beginning of an operation.
 | |
|         /// </summary>
 | |
|         Begin = 5,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Callback for operation progress.
 | |
|         /// </summary>
 | |
|         Progress = 0,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Callback for the completion of an operation.
 | |
|         /// </summary>
 | |
|         Complete = 6,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Callback for failure during the operation.
 | |
|         /// </summary>
 | |
|         Fail = 3,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// RecoveryStep was used for internal reserved functionality
 | |
|         /// prior to Windows 8. Windows 8 and later no longer use RecoveryStep.
 | |
|         /// </summary>
 | |
|         RecoveryStep = 8,
 | |
|     }
 | |
| }
 |