Opaque parameter for sent chat update.

This commit is contained in:
Guillaume Beraudo 2012-09-03 16:28:38 +02:00
parent 0121763b41
commit e5fc650e90

View file

@ -34,6 +34,6 @@ public interface LinphoneChatRoom {
* send a message to peer member of this chat room.
* @param message to be sent
*/
void sendMessage(String message);
void sendMessage(Object opaque, String message);
}