mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-13 05:55:39 +02:00
17 lines
418 B
C#
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;
|
|
}
|
|
}
|