mirror of
				https://github.com/gnh1201/welsonjs.git
				synced 2025-10-30 20:41:18 +00:00 
			
		
		
		
	Add the package ManagedEsent (microsoft/ManagedEsent@d358c07), and WelsonJS.Esent
		
			
				
	
	
		
			25 lines
		
	
	
		
			623 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			623 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| //-----------------------------------------------------------------------
 | |
| // <copyright file="jet_objtyp.cs" company="Microsoft Corporation">
 | |
| //     Copyright (c) Microsoft Corporation.
 | |
| // </copyright>
 | |
| //-----------------------------------------------------------------------
 | |
| 
 | |
| namespace Microsoft.Isam.Esent.Interop
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Type of an ESENT object.
 | |
|     /// </summary>
 | |
|     public enum JET_objtyp
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Invalid object type.
 | |
|         /// </summary>
 | |
|         Nil = 0,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Object is a table.
 | |
|         /// </summary>
 | |
|         Table = 1,
 | |
|     }
 | |
| }
 |