aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie2010-12-30 00:31:59 +0100
committerMelanie2010-12-30 00:31:59 +0100
commit2cb2bff9b2ab68c325b0142da0b37730be9a12a3 (patch)
tree147d2d65fa710842f26afe97713f4de60d14889d /OpenSim/Framework/IClientAPI.cs
parentCopying a ref type under lock doesn't dissociate it from the source. (diff)
downloadopensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.zip
opensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.tar.gz
opensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.tar.bz2
opensim-SC_OLD-2cb2bff9b2ab68c325b0142da0b37730be9a12a3.tar.xz
Implement SendPlacesReply
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index ea081e2..3f77092 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -587,6 +587,23 @@ namespace OpenSim.Framework
587 } 587 }
588 } 588 }
589 589
590 public class PlacesReplyData
591 {
592 public UUID OwnerID;
593 public string Name;
594 public string Desc;
595 public int ActualArea;
596 public int BillableArea;
597 public byte Flags;
598 public uint GlobalX;
599 public uint GlobalY;
600 public uint GlobalZ;
601 public string SimName;
602 public UUID SnapshotID;
603 public uint Dwell;
604 public int Price;
605 }
606
590 /// <summary> 607 /// <summary>
591 /// Specifies the fields that have been changed when sending a prim or 608 /// Specifies the fields that have been changed when sending a prim or
592 /// avatar update 609 /// avatar update
@@ -1321,5 +1338,7 @@ namespace OpenSim.Framework
1321 void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); 1338 void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId);
1322 1339
1323 void StopFlying(ISceneEntity presence); 1340 void StopFlying(ISceneEntity presence);
1341
1342 void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data);
1324 } 1343 }
1325} 1344}