NOKTASI yapısı
İşaret yapısını tanımlayan x*–* ve y-koordinatlarının bir nokta.
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT;
Parametreler
x
Bir noktanın x koordinatı belirtir.y
Bir noktanın y koordinatı belirtir.
Örnek
//Alternate ways to initialize a POINT structure:
POINT ptA;
ptA.x = 370;
ptA.y = 550;
POINT ptB = {370,550};
Gereksinimler
Başlık: windef.h