How do I declare and initialize an array of POINT structs to use in MFC polygonal functions?
I've tried many approaches including:

POINT{
LONG x;
LONG y;
} ptArray[8]



which elicits compiler error: cannot convert from tagPOINT[8] to tagPOINT*. What's wrong?

TIA

Tom