mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-07-11 03:03:10 +00:00
Add the package ManagedEsent (microsoft/ManagedEsent@d358c07), and WelsonJS.Esent
19 lines
652 B
C#
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;
|
|
}
|
|
} |