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