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 21ffa9a..da893b6 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 | ||
@@ -775,6 +778,7 @@ namespace OpenSim.Framework | |||
775 | event RequestTaskInventory OnRequestTaskInventory; | 778 | event RequestTaskInventory OnRequestTaskInventory; |
776 | event UpdateInventoryItem OnUpdateInventoryItem; | 779 | event UpdateInventoryItem OnUpdateInventoryItem; |
777 | event CopyInventoryItem OnCopyInventoryItem; | 780 | event CopyInventoryItem OnCopyInventoryItem; |
781 | event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
778 | event MoveInventoryItem OnMoveInventoryItem; | 782 | event MoveInventoryItem OnMoveInventoryItem; |
779 | event RemoveInventoryFolder OnRemoveInventoryFolder; | 783 | event RemoveInventoryFolder OnRemoveInventoryFolder; |
780 | event RemoveInventoryItem OnRemoveInventoryItem; | 784 | event RemoveInventoryItem OnRemoveInventoryItem; |
@@ -945,6 +949,7 @@ namespace OpenSim.Framework | |||
945 | void InPacket(object NewPack); | 949 | void InPacket(object NewPack); |
946 | void ProcessInPacket(Packet NewPack); | 950 | void ProcessInPacket(Packet NewPack); |
947 | void Close(); | 951 | void Close(); |
952 | void Close(bool sendStop); | ||
948 | void Kick(string message); | 953 | void Kick(string message); |
949 | 954 | ||
950 | /// <summary> | 955 | /// <summary> |
@@ -976,7 +981,7 @@ namespace OpenSim.Framework | |||
976 | /// </summary> | 981 | /// </summary> |
977 | /// <param name="regionHandle"></param> | 982 | /// <param name="regionHandle"></param> |
978 | /// <param name="localID"></param> | 983 | /// <param name="localID"></param> |
979 | void SendKillObject(ulong regionHandle, uint localID); | 984 | void SendKillObject(ulong regionHandle, List<uint> localID); |
980 | 985 | ||
981 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); | 986 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); |
982 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); | 987 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); |