diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IWorldComm.cs | 10 |
1 files changed, 4 insertions, 6 deletions
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 | |||
33 | { | 33 | { |
34 | public interface IWorldComm | 34 | public interface IWorldComm |
35 | { | 35 | { |
36 | int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg); | 36 | int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, LLUUID id, string msg); |
37 | void DeliverMessage(string sourceItemID, ChatTypeEnum type, int channel, string name, string msg); | 37 | void DeliverMessage(ChatTypeEnum type, int channel, string name, LLUUID id, string msg); |
38 | bool HasMessages(); | 38 | bool HasMessages(); |
39 | ListenerInfo GetNextMessage(); | 39 | ListenerInfo GetNextMessage(); |
40 | void ListenControl(int handle, int active); | 40 | void ListenControl(LLUUID itemID, int handle, int active); |
41 | void ListenRemove(int handle); | 41 | void ListenRemove(LLUUID itemID, int handle); |
42 | void DeleteListener(LLUUID itemID); | 42 | void DeleteListener(LLUUID itemID); |
43 | uint PeekNextMessageLocalID(); | ||
44 | LLUUID PeekNextMessageItemID(); | ||
45 | } | 43 | } |
46 | } | 44 | } |