POINT 结构
点 结构定义点的 x 坐标和 y 坐标。
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT;
参数
x
指定点的 x 坐标。y
指定点的 y 坐标。
示例
//Alternate ways to initialize a POINT structure:
POINT ptA;
ptA.x = 370;
ptA.y = 550;
POINT ptB = {370,550};
要求
Header: windef.h