mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-03-02 09:50:32 +00:00
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,
|
|||
|
}
|
|||
|
}
|