mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-29 02:02:45 +00:00
30 lines
732 B
C#
30 lines
732 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="jet_cp.cs" company="Microsoft Corporation">
|
|
// Copyright (c) Microsoft Corporation.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace Microsoft.Isam.Esent.Interop
|
|
{
|
|
/// <summary>
|
|
/// Codepage for an ESENT column.
|
|
/// </summary>
|
|
public enum JET_CP
|
|
{
|
|
/// <summary>
|
|
/// Code page for non-text columns.
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Unicode encoding.
|
|
/// </summary>
|
|
Unicode = 1200,
|
|
|
|
/// <summary>
|
|
/// ASCII encoding.
|
|
/// </summary>
|
|
ASCII = 1252,
|
|
}
|
|
}
|