// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
////////////////////////////////////////////////////////////////////////////////
using System;
namespace System.Runtime.InteropServices {
// Used in the StructLayoutAttribute class
//|
public enum LayoutKind
{
//|
Sequential = 0, // 0x00000008,
//|
Explicit = 2, // 0x00000010,
//|
Auto = 3, // 0x00000000,
}
}