POINTS 结构
POINTS 结构定义了一个点的 x 坐标和 y 坐标。
结构原型:
typedef struct tagPOINTS {
SHORT x;
SHORT y;
} POINTS, *PPOINTS;
成员解析:
|
成员 |
含义 |
|
x |
被定义的点的 x 坐标 |
|
y |
被定义的点的 y 坐标 |
需求:
|
Minimum supported client |
Windows 2000 专业版 [仅桌面应用程序] |
|
Minimum supported server |
Windows 2000 服务器版 [仅桌面应用程序] |
|
Header |
Windef.h (包含于 Windows.h) |




