Structure POINT (windef.h)

La structure POINT définit les coordonnées x et y d’un point.

Syntaxe

typedef struct tagPOINT {
  LONG x;
  LONG y;
} POINT, *PPOINT, *NPPOINT, *LPPOINT;

Membres

x

Spécifie la coordonnée x du point.

y

Spécifie la coordonnée y du point.

Remarques

La structure POINT est identique à la structure POINTL .

Configuration requise

Condition requise Valeur
En-tête windef.h (inclure Windows.h)

Voir aussi

POINTL

POINTS