BOD struktury
Bodu definuje strukturu x*–* a Souřadnice y bodu.
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT;
Parametry
x
Určuje souřadnici x bodu.y
Určuje souřadnici y bodu.
Příklad
//Alternate ways to initialize a POINT structure:
POINT ptA;
ptA.x = 370;
ptA.y = 550;
POINT ptB = {370,550};
Požadavky
Záhlaví: windef.h