welsonjs/WelsonJS.Toolkit/EsentInterop/Windows10Coltyp.cs
Namhyeon, Go 25aaff14f2 Revert "Remove the native components"
This reverts commit a763e63459.
2025-12-14 18:48:12 +09:00

19 lines
652 B
C#

//-----------------------------------------------------------------------
// <copyright file="Windows10Coltyp.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation.
// </copyright>
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows10
{
/// <summary>
/// Column types that have been added to the Windows 10 version of ESENT.
/// </summary>
public static class Windows10Coltyp
{
/// <summary>
/// Unsigned 64-bit number.
/// </summary>
public const JET_coltyp UnsignedLongLong = (JET_coltyp)18;
}
}