Files
eveo/Eve-O-Preview/WindowManager/Interop/MARGINS.cs
2018-02-05 01:52:33 +02:00

21 lines
447 B
C#

using System.Runtime.InteropServices;
namespace EveOPreview.WindowManager.Implementation
{
[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;
}
}
}