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