diff options
author | Jeff Ames | 2007-11-18 13:50:46 +0000 |
---|---|---|
committer | Jeff Ames | 2007-11-18 13:50:46 +0000 |
commit | d10c79d4216436fd2a5056dbf853f317967202af (patch) | |
tree | 2474bfe5d0f56f624a19ff112807233e5e335f08 /OpenSim/Framework/IClientAPI.cs | |
parent | * Found several cases where prim set physical were not subscribing to physics... (diff) | |
download | opensim-SC_OLD-d10c79d4216436fd2a5056dbf853f317967202af.zip opensim-SC_OLD-d10c79d4216436fd2a5056dbf853f317967202af.tar.gz opensim-SC_OLD-d10c79d4216436fd2a5056dbf853f317967202af.tar.bz2 opensim-SC_OLD-d10c79d4216436fd2a5056dbf853f317967202af.tar.xz |
first stab at implementation of CopyInventoryItem
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 ada5ff0..23181bf 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -272,6 +272,9 @@ namespace OpenSim.Framework | |||
272 | public delegate void UpdateInventoryItemTransaction( | 272 | public delegate void UpdateInventoryItemTransaction( |
273 | IClientAPI remoteClient, LLUUID transactionID, LLUUID assetID, LLUUID itemID); | 273 | IClientAPI remoteClient, LLUUID transactionID, LLUUID assetID, LLUUID itemID); |
274 | 274 | ||
275 | public delegate void CopyInventoryItem( | ||
276 | IClientAPI remoteClient, uint callbackID, LLUUID oldAgentID, LLUUID oldItemID, LLUUID newFolderID, string newName); | ||
277 | |||
275 | public delegate void RezScript(IClientAPI remoteClient, LLUUID itemID, uint localID); | 278 | public delegate void RezScript(IClientAPI remoteClient, LLUUID itemID, uint localID); |
276 | 279 | ||
277 | public delegate void UpdateTaskInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID folderID, uint localID); | 280 | public delegate void UpdateTaskInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID folderID, uint localID); |
@@ -344,6 +347,7 @@ namespace OpenSim.Framework | |||
344 | event FetchInventory OnFetchInventory; | 347 | event FetchInventory OnFetchInventory; |
345 | event RequestTaskInventory OnRequestTaskInventory; | 348 | event RequestTaskInventory OnRequestTaskInventory; |
346 | event UpdateInventoryItemTransaction OnUpdateInventoryItem; | 349 | event UpdateInventoryItemTransaction OnUpdateInventoryItem; |
350 | event CopyInventoryItem OnCopyInventoryItem; | ||
347 | event UDPAssetUploadRequest OnAssetUploadRequest; | 351 | event UDPAssetUploadRequest OnAssetUploadRequest; |
348 | event XferReceive OnXferReceive; | 352 | event XferReceive OnXferReceive; |
349 | event RequestXfer OnRequestXfer; | 353 | event RequestXfer OnRequestXfer; |