structure de POINT
La structure POINT définit les coordonnées X- et Y d'un point.
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT;
Paramètres
x
Spécifie l'abscisse d'un point.y
Spécifie l'ordonnée d'un point.
Exemple
//Alternate ways to initialize a POINT structure:
POINT ptA;
ptA.x = 370;
ptA.y = 550;
POINT ptB = {370,550};
Configuration requise
Header: windef.h