diff options
author | Melanie Thielker | 2008-10-05 02:25:53 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-05 02:25:53 +0000 |
commit | 13e3ffada36529bd64909d272b4e25145c26e4c8 (patch) | |
tree | 4313bbf0086f150b747b3492b198a29672b7b3e0 /OpenSim/Framework | |
parent | Fix Mantis #2281: touch events in non-default states in DNE work again. (diff) | |
download | opensim-SC_OLD-13e3ffada36529bd64909d272b4e25145c26e4c8.zip opensim-SC_OLD-13e3ffada36529bd64909d272b4e25145c26e4c8.tar.gz opensim-SC_OLD-13e3ffada36529bd64909d272b4e25145c26e4c8.tar.bz2 opensim-SC_OLD-13e3ffada36529bd64909d272b4e25145c26e4c8.tar.xz |
Plumb in the DirPlacesReply packet
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 11 |
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 | } |