PersistentWindows/Ninjacrab.PersistentWindows.Solution/Ninjacrab.PersistentWindows.Common/WinApiBridge/WindowsPosition.cs
2016-08-28 14:35:21 +10:00

17 lines
418 B
C#

using System;
using System.Runtime.InteropServices;
namespace Ninjacrab.PersistentWindows.Common.WinApiBridge
{
[StructLayout(LayoutKind.Sequential)]
public struct WindowsPosition
{
public IntPtr hwnd;
public IntPtr hwndInsertAfter;
public int Left;
public int Top;
public int Width;
public int Height;
public int Flags;
}
}