using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace Apewer.Internals.Interop
{
[StructLayout(LayoutKind.Sequential)]
internal struct MARGINS
public int Left;
public int Right;
public int Top;
public int Bottom;
}