DWM API moved into a folder

This commit is contained in:
Anton Kasyanov
2016-05-09 19:56:16 +03:00
parent 09405ac43a
commit 793fc8cd06
8 changed files with 115 additions and 86 deletions

View File

@@ -0,0 +1,21 @@
using System.Runtime.InteropServices;
namespace EveOPreview
{
[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;
}
}
}