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 21ffa9a..ea081e2 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 | ||
@@ -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); |