X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fadapter%2FAdapterCommunication.h;h=22e00cbef5998f7a324639e3da320a14feb5f128;hb=f60ee8b35a31f8795658407a6863425a2c5c84d7;hp=b73dccde19387ea99ac1f20d0c0071af4383b0e5;hpb=7d27bafc81161bf5d86e4d5bf2e833ca72d1d130;p=deb_libcec.git diff --git a/src/lib/adapter/AdapterCommunication.h b/src/lib/adapter/AdapterCommunication.h index b73dccd..22e00cb 100644 --- a/src/lib/adapter/AdapterCommunication.h +++ b/src/lib/adapter/AdapterCommunication.h @@ -77,9 +77,10 @@ namespace CEC /*! * @brief Callback method for IAdapterCommunication, called when a logical address that libCEC uses was taken by another device. - * @param address The logical address that was taken by another device. + * @param oldAddress The logical address that was taken by another device. + * @param newAddress The new logical address, or CECDEVICE_UNKNOWN if no new LA could be allocated. */ - virtual void HandleLogicalAddressLost(cec_logical_address address) = 0; + virtual void HandleLogicalAddressLost(cec_logical_address oldAddress, cec_logical_address newAddress) = 0; virtual CLibCEC *GetLib(void) const = 0; };