diff options
author | Brian McBee | 2007-12-08 19:13:10 +0000 |
---|---|---|
committer | Brian McBee | 2007-12-08 19:13:10 +0000 |
commit | beca2373e15c0541e83f01abedfe7d6bfa469c8b (patch) | |
tree | fbee508dbcd24ef171cdc307fcf22318cf4150d3 /OpenSim/Framework | |
parent | * Added back the regionup code so people in nearby sims can see a downed sim ... (diff) | |
download | opensim-SC_OLD-beca2373e15c0541e83f01abedfe7d6bfa469c8b.zip opensim-SC_OLD-beca2373e15c0541e83f01abedfe7d6bfa469c8b.tar.gz opensim-SC_OLD-beca2373e15c0541e83f01abedfe7d6bfa469c8b.tar.bz2 opensim-SC_OLD-beca2373e15c0541e83f01abedfe7d6bfa469c8b.tar.xz |
Allow moving, deleting, and restoring objects in inventory.
Note: only tested in grid mode, and emptying trash is still not implemented.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 2cb166c..38309fd 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -317,6 +317,9 @@ namespace OpenSim.Framework | |||
317 | public delegate void CopyInventoryItem( | 317 | public delegate void CopyInventoryItem( |
318 | IClientAPI remoteClient, uint callbackID, LLUUID oldAgentID, LLUUID oldItemID, LLUUID newFolderID, string newName); | 318 | IClientAPI remoteClient, uint callbackID, LLUUID oldAgentID, LLUUID oldItemID, LLUUID newFolderID, string newName); |
319 | 319 | ||
320 | public delegate void MoveInventoryItem( | ||
321 | IClientAPI remoteClient, LLUUID folderID, LLUUID itemID, int length, string newName); | ||
322 | |||
320 | public delegate void RezScript(IClientAPI remoteClient, LLUUID itemID, uint localID); | 323 | public delegate void RezScript(IClientAPI remoteClient, LLUUID itemID, uint localID); |
321 | 324 | ||
322 | public delegate void UpdateTaskInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID folderID, uint localID); | 325 | public delegate void UpdateTaskInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID folderID, uint localID); |
@@ -399,6 +402,7 @@ namespace OpenSim.Framework | |||
399 | event RequestTaskInventory OnRequestTaskInventory; | 402 | event RequestTaskInventory OnRequestTaskInventory; |
400 | event UpdateInventoryItem OnUpdateInventoryItem; | 403 | event UpdateInventoryItem OnUpdateInventoryItem; |
401 | event CopyInventoryItem OnCopyInventoryItem; | 404 | event CopyInventoryItem OnCopyInventoryItem; |
405 | event MoveInventoryItem OnMoveInventoryItem; | ||
402 | event UDPAssetUploadRequest OnAssetUploadRequest; | 406 | event UDPAssetUploadRequest OnAssetUploadRequest; |
403 | event XferReceive OnXferReceive; | 407 | event XferReceive OnXferReceive; |
404 | event RequestXfer OnRequestXfer; | 408 | event RequestXfer OnRequestXfer; |