POINT 结构
该 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};
要求
标头: windef.h