Struktura punkt
Pkt struktury definiuje x*—* i współrzędne y punktu.
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT;
Parametry
x
Określa współrzędną x punktu.y
Określa współrzędną y punktu.
Przykład
//Alternate ways to initialize a POINT structure:
POINT ptA;
ptA.x = 370;
ptA.y = 550;
POINT ptB = {370,550};
Wymagania
Nagłówek: windef.h