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
25 lines
623 B
C#
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,
|
|
}
|
|
}
|