Struttura POINT (windef.h)

La struttura POINT definisce le coordinate x e y di un punto.

Sintassi

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

Members

x

Specifica la coordinata x del punto.

y

Specifica la coordinata y del punto.

Commenti

La struttura POINT è identica alla struttura POINTL .

Requisiti

Requisito Valore
Intestazione windef.h (include Windows.h)

Vedi anche

POINTL

PUNTI