typedef struct tagPOINT { short x; // x-coordinate of a point short y; // y-coordinate of a point } POINT;
Contains the x- and y-coordinates of a point.