Estructura POINTL (windef.h)

La estructura POINTL define las coordenadas x e y de un punto.

Sintaxis

typedef struct _POINTL {
  LONG x;
  LONG y;
} POINTL, *PPOINTL;

Miembros

x

Especifica la coordenada x del punto.

y

Especifica la coordenada y del punto.

Comentarios

La estructura POINTL es idéntica a la estructura POINT .

Requisitos

   
Encabezado windef.h (incluye Windows.h)

Consulte también

PUNTO

POINTS