From dc21e8d5e2c830311271ac5cafb0d166a571a74e Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Thu, 8 May 2008 13:41:10 +0000 Subject: * Applying patch #1121 - Fixes for llListen() (Thanks Middlelink!) --- OpenSim/Region/Environment/Interfaces/IWorldComm.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs index 8a63c54..c471e7f 100644 --- a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs +++ b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs @@ -33,14 +33,12 @@ namespace OpenSim.Region.Environment.Interfaces { public interface IWorldComm { - int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg); - void DeliverMessage(string sourceItemID, ChatTypeEnum type, int channel, string name, string msg); + int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, LLUUID id, string msg); + void DeliverMessage(ChatTypeEnum type, int channel, string name, LLUUID id, string msg); bool HasMessages(); ListenerInfo GetNextMessage(); - void ListenControl(int handle, int active); - void ListenRemove(int handle); + void ListenControl(LLUUID itemID, int handle, int active); + void ListenRemove(LLUUID itemID, int handle); void DeleteListener(LLUUID itemID); - uint PeekNextMessageLocalID(); - LLUUID PeekNextMessageItemID(); } } -- cgit v1.1