Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
The POINTS structure defines the x- and y-coordinates of a point.
Syntax
typedef struct tagPOINTS {
#if ...
SHORT x;
#if ...
SHORT y;
#else
SHORT y;
#endif
#else
SHORT x;
#endif
} POINTS, *PPOINTS, *LPPOINTS;
Members
x
Specifies the x-coordinate of the point.
y
Specifies the y-coordinate of the point.
Remarks
The POINTS structure is similar to the POINT and POINTL structures. The difference is that the members of the POINTS structure are of type SHORT, while those of the other two structures are of type LONG.
Requirements
| Requirement | Value |
|---|---|
| Header | windef.h (include Windows.h) |