X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FCECCommandHandler.h;h=e7184dfc8d708836acd22e8d731e36c2d105541d;hb=465ab2f15fbb14a26f0f7a3139e0fe981fabc8f0;hp=70c86eb2476ebab0f526468fa4f1294f2b5909a5;hpb=0f23c85cf92ff0ff061b5c965f771d9a4b3afe56;p=deb_libcec.git diff --git a/src/lib/implementations/CECCommandHandler.h b/src/lib/implementations/CECCommandHandler.h index 70c86eb..e7184df 100644 --- a/src/lib/implementations/CECCommandHandler.h +++ b/src/lib/implementations/CECCommandHandler.h @@ -47,6 +47,7 @@ namespace CEC virtual cec_vendor_id GetVendorId(void) { return CEC_VENDOR_UNKNOWN; }; protected: + bool HandleDeviceCecVersion(const cec_command &command); bool HandleDeviceVendorCommandWithId(const cec_command &command); bool HandleDeviceVendorId(const cec_command &command); bool HandleGetCecVersion(const cec_command &command); @@ -56,14 +57,17 @@ namespace CEC bool HandleGiveOSDName(const cec_command &command); bool HandleGivePhysicalAddress(const cec_command &command); bool HandleMenuRequest(const cec_command &command); + bool HandleReportPowerStatus(const cec_command &command); bool HandleRequestActiveSource(const cec_command &command); bool HandleRoutingChange(const cec_command &command); + bool HandleSetMenuLanguage(const cec_command &command); bool HandleSetStreamPath(const cec_command &command); bool HandleUserControlPressed(const cec_command &command); bool HandleUserControlRelease(const cec_command &command); void UnhandledCommand(const cec_command &command); CCECBusDevice *GetDevice(cec_logical_address iLogicalAddress) const; + CCECBusDevice *GetThisDevice(void) const; CCECBusDevice *m_busDevice; }; };