X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fimplementations%2FSLCommandHandler.h;h=5c1130ae0f1f379c95832f498bc639ac08629a57;hb=37acf382b4a151ba018ecd3558fdd5b8cc585077;hp=bc917dccf4976b81e3d8290ccd0e0c4b8cc18251;hpb=fdd91966a0d9d32b3e68cd91b6612840b80b227d;p=deb_libcec.git diff --git a/src/lib/implementations/SLCommandHandler.h b/src/lib/implementations/SLCommandHandler.h index bc917dc..5c1130a 100644 --- a/src/lib/implementations/SLCommandHandler.h +++ b/src/lib/implementations/SLCommandHandler.h @@ -43,9 +43,18 @@ namespace CEC virtual cec_vendor_id GetVendorId(void) { return CEC_VENDOR_LG; }; virtual bool HandleCommand(const cec_command &command); + virtual void HandlePoll(const cec_logical_address iInitiator, const cec_logical_address iDestination); + virtual bool HandleReceiveFailed(void); + virtual bool InitHandler(void); + virtual bool TransmitLGVendorId(const cec_logical_address iInitiator, const cec_logical_address iDestination); protected: + virtual void TransmitDeckStatus(const cec_logical_address iDestination); virtual bool HandleGiveDeviceVendorId(const cec_command &command); virtual bool HandleVendorCommand(const cec_command &command); + + bool m_bAwaitingReceiveFailed; + bool m_bSLEnabled; + bool m_bSkipNextVendorId; }; };