DSInternals/Src/Microsoft.Isam.Esent.Interop/jet_objtyp.cs

25 lines
623 B
C#
Raw Normal View History

2016-01-23 21:00:26 +00:00
//-----------------------------------------------------------------------
// <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,
}
}