| 508 | } |
| 509 | |
| 510 | bool ProcessCommandEA(ICECAdapter *parser, const std::string &command, std::string & UNUSED(arguments)) |
| 511 | { |
| 512 | if (command == "ea") |
| 513 | { |
| 514 | if (parser->AudioEnable(true)) { |
| 515 | PrintToStdOut("Request System Audio Mode On sent."); |
| 516 | return true; |
| 517 | } |
| 518 | } |
| 519 | |
| 520 | return false; |
| 521 | } |
| 522 | |
| 523 | bool ProcessCommandDA(ICECAdapter *parser, const std::string &command, std::string & UNUSED(arguments)) |
| 524 | { |
no test coverage detected