POINTS
struct POINTS
The POINTS structure defines the x- and y-coordinates of a point.
using System.CodeDom.Compiler;
using System.Drawing;
namespace Windows.Win32.Foundation
{
[GeneratedCode("Microsoft.Windows.CsWin32", "0.3.106+a37a0b4b70")]
internal struct POINTS
{
internal short x;
internal short y;
public static implicit operator Point(POINTS point)
{
return new Point(point.x, point.y);
}
}
}