小甲鱼 发表于 2016-5-23 17:43:39

POINTS 结构

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)


【API档案】版权归鱼C工作室(www.fishc.com)所有,转载请注明来源。

页: [1]
查看完整版本: POINTS 结构