Struttura POINTS (windef.h)

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

Sintassi

typedef struct tagPOINTS {
#if ...
  SHORT x;
#if ...
  SHORT y;
#else
  SHORT y;
#endif
#else
  SHORT x;
#endif
} POINTS, *PPOINTS, *LPPOINTS;

Members

x

Specifica la coordinata x del punto.

y

Specifica la coordinata y del punto.

Commenti

La struttura POINTS è simile alle strutture POINT e POINTL . La differenza è che i membri della struttura POINTS sono di tipo SHORT, mentre quelli delle altre due strutture sono di tipo LONG.

Requisiti

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

Vedi anche

PUNTO

POINTL