diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index a6be157..3f77092 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 | ||
@@ -460,9 +463,9 @@ namespace OpenSim.Framework | |||
460 | 463 | ||
461 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); | 464 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); |
462 | 465 | ||
463 | public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int Flags,UUID AgentID); | 466 | public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int type, uint flags); |
464 | 467 | ||
465 | public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name, UUID AgentID); | 468 | public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name); |
466 | 469 | ||
467 | public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); | 470 | public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); |
468 | 471 | ||
@@ -792,6 +795,7 @@ namespace OpenSim.Framework | |||
792 | event RequestTaskInventory OnRequestTaskInventory; | 795 | event RequestTaskInventory OnRequestTaskInventory; |
793 | event UpdateInventoryItem OnUpdateInventoryItem; | 796 | event UpdateInventoryItem OnUpdateInventoryItem; |
794 | event CopyInventoryItem OnCopyInventoryItem; | 797 | event CopyInventoryItem OnCopyInventoryItem; |
798 | event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
795 | event MoveInventoryItem OnMoveInventoryItem; | 799 | event MoveInventoryItem OnMoveInventoryItem; |
796 | event RemoveInventoryFolder OnRemoveInventoryFolder; | 800 | event RemoveInventoryFolder OnRemoveInventoryFolder; |
797 | event RemoveInventoryItem OnRemoveInventoryItem; | 801 | event RemoveInventoryItem OnRemoveInventoryItem; |
@@ -962,6 +966,7 @@ namespace OpenSim.Framework | |||
962 | void InPacket(object NewPack); | 966 | void InPacket(object NewPack); |
963 | void ProcessInPacket(Packet NewPack); | 967 | void ProcessInPacket(Packet NewPack); |
964 | void Close(); | 968 | void Close(); |
969 | void Close(bool sendStop); | ||
965 | void Kick(string message); | 970 | void Kick(string message); |
966 | 971 | ||
967 | /// <summary> | 972 | /// <summary> |
@@ -993,7 +998,7 @@ namespace OpenSim.Framework | |||
993 | /// </summary> | 998 | /// </summary> |
994 | /// <param name="regionHandle"></param> | 999 | /// <param name="regionHandle"></param> |
995 | /// <param name="localID"></param> | 1000 | /// <param name="localID"></param> |
996 | void SendKillObject(ulong regionHandle, uint localID); | 1001 | void SendKillObject(ulong regionHandle, List<uint> localID); |
997 | 1002 | ||
998 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); | 1003 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); |
999 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); | 1004 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); |