aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IXInventoryData.cs
diff options
context:
space:
mode:
authorMelanie2010-01-04 20:52:44 +0000
committerMelanie2010-01-04 20:52:44 +0000
commit0907d5d69e10ba5be79a6d03366ce3cfa59c0bec (patch)
tree19adc9bd13e46b58ce218fc1d62f09c788fa2770 /OpenSim/Data/IXInventoryData.cs
parentFirst stage port of the XInventoryService (diff)
downloadopensim-SC_OLD-0907d5d69e10ba5be79a6d03366ce3cfa59c0bec.zip
opensim-SC_OLD-0907d5d69e10ba5be79a6d03366ce3cfa59c0bec.tar.gz
opensim-SC_OLD-0907d5d69e10ba5be79a6d03366ce3cfa59c0bec.tar.bz2
opensim-SC_OLD-0907d5d69e10ba5be79a6d03366ce3cfa59c0bec.tar.xz
Finish conversion if XInventoryService
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/IXInventoryData.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Data/IXInventoryData.cs b/OpenSim/Data/IXInventoryData.cs
index 88174d9..cd9273e 100644
--- a/OpenSim/Data/IXInventoryData.cs
+++ b/OpenSim/Data/IXInventoryData.cs
@@ -77,6 +77,8 @@ namespace OpenSim.Data
77 bool DeleteFolders(string field, string val); 77 bool DeleteFolders(string field, string val);
78 bool DeleteItems(string field, string val); 78 bool DeleteItems(string field, string val);
79 79
80 bool MoveItem(string principalID, string id, string newParent); 80 bool MoveItem(string id, string newParent);
81 XInventoryItem[] GetActiveGestures(UUID principalID);
82 int GetAssetPermissions(UUID principalID, UUID assetID);
81 } 83 }
82} 84}