diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index b9c9323..1a59cf4 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -265,6 +265,9 @@ namespace OpenSim.Framework | |||
265 | public delegate void MoveInventoryItem( | 265 | public delegate void MoveInventoryItem( |
266 | IClientAPI remoteClient, List<InventoryItemBase> items); | 266 | IClientAPI remoteClient, List<InventoryItemBase> items); |
267 | 267 | ||
268 | public delegate void MoveItemsAndLeaveCopy( | ||
269 | IClientAPI remoteClient, List<InventoryItemBase> items, UUID destFolder); | ||
270 | |||
268 | public delegate void RemoveInventoryItem( | 271 | public delegate void RemoveInventoryItem( |
269 | IClientAPI remoteClient, List<UUID> itemIDs); | 272 | IClientAPI remoteClient, List<UUID> itemIDs); |
270 | 273 | ||
@@ -773,6 +776,7 @@ namespace OpenSim.Framework | |||
773 | event RequestTaskInventory OnRequestTaskInventory; | 776 | event RequestTaskInventory OnRequestTaskInventory; |
774 | event UpdateInventoryItem OnUpdateInventoryItem; | 777 | event UpdateInventoryItem OnUpdateInventoryItem; |
775 | event CopyInventoryItem OnCopyInventoryItem; | 778 | event CopyInventoryItem OnCopyInventoryItem; |
779 | event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
776 | event MoveInventoryItem OnMoveInventoryItem; | 780 | event MoveInventoryItem OnMoveInventoryItem; |
777 | event RemoveInventoryFolder OnRemoveInventoryFolder; | 781 | event RemoveInventoryFolder OnRemoveInventoryFolder; |
778 | event RemoveInventoryItem OnRemoveInventoryItem; | 782 | event RemoveInventoryItem OnRemoveInventoryItem; |
@@ -943,6 +947,7 @@ namespace OpenSim.Framework | |||
943 | void InPacket(object NewPack); | 947 | void InPacket(object NewPack); |
944 | void ProcessInPacket(Packet NewPack); | 948 | void ProcessInPacket(Packet NewPack); |
945 | void Close(); | 949 | void Close(); |
950 | void Close(bool sendStop); | ||
946 | void Kick(string message); | 951 | void Kick(string message); |
947 | 952 | ||
948 | /// <summary> | 953 | /// <summary> |
@@ -974,7 +979,7 @@ namespace OpenSim.Framework | |||
974 | /// </summary> | 979 | /// </summary> |
975 | /// <param name="regionHandle"></param> | 980 | /// <param name="regionHandle"></param> |
976 | /// <param name="localID"></param> | 981 | /// <param name="localID"></param> |
977 | void SendKillObject(ulong regionHandle, uint localID); | 982 | void SendKillObject(ulong regionHandle, List<uint> localID); |
978 | 983 | ||
979 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); | 984 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); |
980 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); | 985 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); |