wxRegion::wxRegion(size_t n, const wxPoint *points, int fillStyle)
{
+#ifdef __WXMICROWIN__
+ m_refData = NULL;
+ M_REGION = NULL;
+#else
m_refData = new wxRegionRefData;
M_REGION = ::CreatePolygonRgn
(
n,
fillStyle == wxODDEVEN_RULE ? ALTERNATE : WINDING
);
+#endif
}
/*