I give you only the lines conceing my problem. I don't know why this does not compile :
POINT ptVertex[5];
ptVertex[0].x = 180;
ptVertex[0].y = 80;
ptVertex[1].x = 100;
ptVertex[1].y = 160;
ptVertex[2].x = 120;
ptVertex[2].y = 260;
ptVertex[3].x = 240;
ptVertex[3].y = 260;
ptVertex[4].x = 260;
ptVertex[4].y = 160;
CreatePolygonRgn( &ptVertex, 5, ALTERNATE )
I compile on DevC++ TDM GCC 64bits and the error is :
caot convert 'POINT ()[5] {aka tagPOINT ()[5]}' to 'const POINT* {aka const tagPOINT*}' for argument '1' to 'HRGN__* CreatePolygonRgn(const POINT*, int, int)'
If someone can find my mistake. Thanks.
