EqualRect

[DllImport("user32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EqualRect(
   [In] ref RECT lprc1,
   [In] ref RECT lprc2
);

Microsoft documentation: Link

Last updated