//----------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. // //----------------------------------------------------------------------- namespace Microsoft.Isam.Esent.Interop.Vista { /// /// Column types that have been added to the Vista version of ESENT. /// public static class VistaColtyp { /// /// Unsigned 32-bit number. /// public const JET_coltyp UnsignedLong = (JET_coltyp)14; /// /// Signed 64-bit number. /// public const JET_coltyp LongLong = (JET_coltyp)15; /// /// 16-byte GUID. /// public const JET_coltyp GUID = (JET_coltyp)16; /// /// Unsigned 16-bit number. /// public const JET_coltyp UnsignedShort = (JET_coltyp)17; } }