diff options
author | Melanie Thielker | 2008-10-04 22:29:37 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-04 22:29:37 +0000 |
commit | f52d779550494cdc61b6f3b28c620c5b7d9f0d16 (patch) | |
tree | 36f691c09a99e3d53643d6365bb4953a5c2d6da2 /OpenSim/Framework | |
parent | * Tidy up configuration stuff, eliminated default setting duplication along t... (diff) | |
download | opensim-SC_OLD-f52d779550494cdc61b6f3b28c620c5b7d9f0d16.zip opensim-SC_OLD-f52d779550494cdc61b6f3b28c620c5b7d9f0d16.tar.gz opensim-SC_OLD-f52d779550494cdc61b6f3b28c620c5b7d9f0d16.tar.bz2 opensim-SC_OLD-f52d779550494cdc61b6f3b28c620c5b7d9f0d16.tar.xz |
Plumb packet DirPlacesQuery for search module
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 5baa595..2ae66e4 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -309,6 +309,7 @@ namespace OpenSim.Framework | |||
309 | 309 | ||
310 | public delegate void TerrainUnacked(IClientAPI remoteClient, int patchX, int patchY); | 310 | public delegate void TerrainUnacked(IClientAPI remoteClient, int patchX, int patchY); |
311 | 311 | ||
312 | public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart); | ||
312 | #endregion | 313 | #endregion |
313 | 314 | ||
314 | public interface IClientAPI | 315 | public interface IClientAPI |
@@ -534,6 +535,8 @@ namespace OpenSim.Framework | |||
534 | event ActivateGesture OnActivateGesture; | 535 | event ActivateGesture OnActivateGesture; |
535 | event DeactivateGesture OnDeactivateGesture; | 536 | event DeactivateGesture OnDeactivateGesture; |
536 | 537 | ||
538 | event DirPlacesQuery OnDirPlacesQuery; | ||
539 | |||
537 | // void ActivateGesture(UUID assetId, UUID gestureId); | 540 | // void ActivateGesture(UUID assetId, UUID gestureId); |
538 | 541 | ||
539 | // [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] | 542 | // [Obsolete("IClientAPI.OutPacket SHOULD NOT EXIST outside of LLClientView please refactor appropriately.")] |