aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 2ae66e4..c0d133e 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -312,6 +312,15 @@ namespace OpenSim.Framework
312 public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart); 312 public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart);
313 #endregion 313 #endregion
314 314
315 public struct DirPlacesReplyData
316 {
317 public UUID parcelID;
318 public string name;
319 public bool forSale;
320 public bool auction;
321 public float dwell;
322 }
323
315 public interface IClientAPI 324 public interface IClientAPI
316 { 325 {
317 Vector3 StartPos { get; set; } 326 Vector3 StartPos { get; set; }
@@ -764,6 +773,8 @@ namespace OpenSim.Framework
764 void SendRegionHandle(UUID regoinID, ulong handle); 773 void SendRegionHandle(UUID regoinID, ulong handle);
765 void SendParcelInfo(RegionInfo info, LandData land, UUID parcelID, uint x, uint y); 774 void SendParcelInfo(RegionInfo info, LandData land, UUID parcelID, uint x, uint y);
766 void SendScriptTeleportRequest(string objName, string simName, Vector3 pos, Vector3 lookAt); 775 void SendScriptTeleportRequest(string objName, string simName, Vector3 pos, Vector3 lookAt);
776
777 void SendDirPlacesReply(UUID queryID, DirPlacesReplyData[] data);
767 void KillEndDone(); 778 void KillEndDone();
768 } 779 }
769} 780}