| 5384 | |
| 5385 | |
| 5386 | ResultType Script::SetCoordMode(LPTSTR aCommand, LPTSTR aMode) |
| 5387 | { |
| 5388 | CoordModeType mode = Line::ConvertCoordMode(aMode); |
| 5389 | CoordModeType shift = Line::ConvertCoordModeCmd(aCommand); |
| 5390 | if (shift == COORD_MODE_INVALID || mode == COORD_MODE_INVALID) |
| 5391 | return ValueError(ERR_INVALID_VALUE, aMode, FAIL_OR_OK); |
| 5392 | g->CoordMode = (g->CoordMode & ~(COORD_MODE_MASK << shift)) | (mode << shift); |
| 5393 | return OK; |
| 5394 | } |
| 5395 | |
| 5396 | ResultType Script::SetSendMode(LPTSTR aValue) |
| 5397 | { |
nothing calls this directly
no test coverage detected