DWM API moved into a folder
This commit is contained in:
21
Eve-O-Preview/DwmAPI/MARGINS.cs
Normal file
21
Eve-O-Preview/DwmAPI/MARGINS.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user