Files
eveo/Eve-O-Preview/DwmAPI/Interop/MARGINS.cs
2018-02-03 21:09:15 +02:00

21 lines
429 B
C#

using System.Runtime.InteropServices;
namespace EveOPreview.DwmInterop
{
[StructLayout(LayoutKind.Sequential)]
class MARGINS
{
public int cxLeftWidth;
public int cxRightWidth;
public int cyTopHeight;
public int cyBottomHeight;
public MARGINS(int left, int top, int right, int bottom)
{
cxLeftWidth = left;
cyTopHeight = top;
cxRightWidth = right;
cyBottomHeight = bottom;
}
}
}