using System.Runtime.InteropServices;
namespace Microsoft.Win32
{
///
/// POINT定义
///
public static partial class NativeMethods
{
///
/// POINT
///
[StructLayout(LayoutKind.Sequential)]
public struct MINMAXINFO
{
///
///
///
public POINT ptReserved;
///
///
///
public POINT ptMaxSize;
///
///
///
public POINT ptMaxPosition;
///
///
///
public POINT ptMinTrackSize;
///
///
///
public POINT ptMaxTrackSize;
}
}
}