welsonjs/WelsonJS.Augmented/EsentInterop/jet_objtyp.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

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,
}
}