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
		
			
				
	
	
		
			23 lines
		
	
	
		
			737 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			737 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| //-----------------------------------------------------------------------
 | |
| // <copyright file="EsentNativeMethods.cs" company="Microsoft Corporation">
 | |
| //  Copyright (c) Microsoft Corporation.
 | |
| // </copyright>
 | |
| // <summary>
 | |
| //  NativeMethods code that is specific to ESENT.
 | |
| // </summary>
 | |
| //-----------------------------------------------------------------------
 | |
| 
 | |
| namespace Microsoft.Isam.Esent.Interop.Implementation
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Configuration for functions in esent.dll.
 | |
|     /// </summary>
 | |
|     internal static partial class NativeMethods
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// The name of the DLL that the methods should be loaded from.
 | |
|         /// </summary>
 | |
|         private const string EsentDll = "esent.dll";
 | |
|     }
 | |
| }
 |