X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FLibCecSharp%2FLibCecSharp.cpp;h=03c0009cea20e7bc51dd1d26449eb1ffac5417dd;hb=8b86fb7afe4d9de820af4f75a3d9faa731497cc4;hp=707248a920a3e1464ee22ec6d679b93c979463c1;hpb=b750a5c3fb139dade6974a1f99a9d090ae706d5b;p=deb_libcec.git diff --git a/src/LibCecSharp/LibCecSharp.cpp b/src/LibCecSharp/LibCecSharp.cpp index 707248a..03c0009 100644 --- a/src/LibCecSharp/LibCecSharp.cpp +++ b/src/LibCecSharp/LibCecSharp.cpp @@ -666,14 +666,14 @@ public: return m_libCec->MuteAudio(wait); } - bool TransmitKeypress(CecLogicalAddress destination, CecUserControlCode key, bool wait) + bool SendKeypress(CecLogicalAddress destination, CecUserControlCode key, bool wait) { - return m_libCec->TransmitKeypress((cec_logical_address)destination, (cec_user_control_code)key, wait); + return m_libCec->SendKeypress((cec_logical_address)destination, (cec_user_control_code)key, wait); } - bool TransmitKeyRelease(CecLogicalAddress destination, bool wait) + bool SendKeyRelease(CecLogicalAddress destination, bool wait) { - return m_libCec->TransmitKeyRelease((cec_logical_address)destination, wait); + return m_libCec->SendKeyRelease((cec_logical_address)destination, wait); } String ^ GetOSDName(CecLogicalAddress logicalAddress)