| 5400 | } |
| 5401 | |
| 5402 | ResultType Script::SetSendLevel(int aValue, LPTSTR aValueStr) |
| 5403 | { |
| 5404 | int sendLevel = aValue; |
| 5405 | if (!SendLevelIsValid(sendLevel)) |
| 5406 | return ValueError(ERR_INVALID_VALUE, aValueStr, FAIL_OR_OK); |
| 5407 | g->SendLevel = sendLevel; |
| 5408 | return OK; |
| 5409 | } |
| 5410 | |
| 5411 | |
| 5412 |
nothing calls this directly
no test coverage detected