POINTS 结构 (windef.h)

POINTS 结构定义点的 x 坐标和 y 坐标。

语法

typedef struct tagPOINTS {
#if ...
  SHORT x;
#if ...
  SHORT y;
#else
  SHORT y;
#endif
#else
  SHORT x;
#endif
} POINTS, *PPOINTS, *LPPOINTS;

成员

x

指定点的 x 坐标。

y

指定点的 y 坐标。

注解

POINTS 结构类似于 POINTPOINTL 结构。 区别在于,POINTS 结构的成员的类型为 SHORT,而其他两个结构的成员的类型为 LONG。

要求

要求
Header windef.h (包括 Windows.h)

另请参阅

POINTL