welsonjs/WelsonJS.Augmented/EsentInterop/Windows10Param.cs
Namhyeon, Go fdabeab54f Change the project name to WelsonJS.Toolkit to WelsonJS.Augmented
Change the project name to WelsonJS.Toolkit to WelsonJS.Augmented
2025-12-14 18:54:32 +09:00

21 lines
766 B
C#

//-----------------------------------------------------------------------
// <copyright file="Windows10Param.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation.
// </copyright>
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows10
{
/// <summary>
/// System parameters that were introduced in Windows 10.
/// </summary>
public static class Windows10Param
{
/// <summary>
/// This allows the client to specify a registry path preceded by a reg: to optionally configure
/// loading or overriding parameters from the registry.
/// </summary>
public const JET_param ConfigStoreSpec = (JET_param)189;
}
}