Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 26 of file map.c.
Referenced by OnCreate().
{ INT x, y; for (y = 0; y < YCELLS; y++) for (x = 0; x < XCELLS; x++) { infoPtr->Cells[y][x].CellExt.left = x * infoPtr->CellSize.cx + 1; infoPtr->Cells[y][x].CellExt.top = y * infoPtr->CellSize.cy + 1; infoPtr->Cells[y][x].CellExt.right = (x + 1) * infoPtr->CellSize.cx + 2; infoPtr->Cells[y][x].CellExt.bottom = (y + 1) * infoPtr->CellSize.cy + 2; CopyRect(&infoPtr->Cells[y][x].CellInt, &infoPtr->Cells[y][x].CellExt); InflateRect(&infoPtr->Cells[y][x].CellInt, -1, -1); } }