using System.Runtime.InteropServices; namespace Apewer.Internals.Interop { /// [StructLayout(LayoutKind.Sequential)] struct NativeRECT { public int left; public int top; public int right; public int bottom; } }