| 521 | } |
| 522 | |
| 523 | bool ProcessCommandDA(ICECAdapter *parser, const std::string &command, std::string & UNUSED(arguments)) |
| 524 | { |
| 525 | if (command == "da") |
| 526 | { |
| 527 | if (parser->AudioEnable(false)) { |
| 528 | PrintToStdOut("Request System Audio Mode Off sent."); |
| 529 | return true; |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | return false; |
| 534 | } |
| 535 | |
| 536 | bool ProcessCommandPOLL(ICECAdapter *parser, const std::string &command, std::string &arguments) |
| 537 | { |
no test coverage detected