aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IWorldComm.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-05-08 13:41:10 +0000
committerAdam Frisby2008-05-08 13:41:10 +0000
commitdc21e8d5e2c830311271ac5cafb0d166a571a74e (patch)
tree15ada49d200622454d785ccdf56012188e462cc3 /OpenSim/Region/Environment/Interfaces/IWorldComm.cs
parent* Commit from Jed Zhu (DeepThink) - Initial implementation of mesh collision... (diff)
downloadopensim-SC_OLD-dc21e8d5e2c830311271ac5cafb0d166a571a74e.zip
opensim-SC_OLD-dc21e8d5e2c830311271ac5cafb0d166a571a74e.tar.gz
opensim-SC_OLD-dc21e8d5e2c830311271ac5cafb0d166a571a74e.tar.bz2
opensim-SC_OLD-dc21e8d5e2c830311271ac5cafb0d166a571a74e.tar.xz
* Applying patch #1121 - Fixes for llListen() (Thanks Middlelink!)
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/IWorldComm.cs')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IWorldComm.cs10
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}