Sends a volume up keypress to an audiosystem if it's present. Send a key release after the keypress. The new audio status.
| 445 | /// <param name="sendRelease">Send a key release after the keypress.</param> |
| 446 | /// <returns>The new audio status.</returns> |
| 447 | uint8_t VolumeUp(bool sendRelease) |
| 448 | { |
| 449 | if (!m_libCec) { |
| 450 | return 0; |
| 451 | } |
| 452 | return m_libCec->VolumeUp(sendRelease); |
| 453 | } |
| 454 | |
| 455 | /// <summary> |
| 456 | /// Sends a volume down keypress to an audiosystem if it's present. |