aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data
diff options
context:
space:
mode:
authorMW2007-07-11 14:39:03 +0000
committerMW2007-07-11 14:39:03 +0000
commit9d989612b0da9c5cc4e33a2f72d13d94116865d1 (patch)
tree414d0697b54e1b2061f4da9aaf3a9877304d1217 /OpenSim/Framework/Data
parent* Removing terrain datafiles from trunk's SVN. Will move somewhere else. (diff)
downloadopensim-SC_OLD-9d989612b0da9c5cc4e33a2f72d13d94116865d1.zip
opensim-SC_OLD-9d989612b0da9c5cc4e33a2f72d13d94116865d1.tar.gz
opensim-SC_OLD-9d989612b0da9c5cc4e33a2f72d13d94116865d1.tar.bz2
opensim-SC_OLD-9d989612b0da9c5cc4e33a2f72d13d94116865d1.tar.xz
updated libsecondlife.dll to a 1.18 version (from the libsecondlife aditi branch, so when they have a trunk version that is 1.18 ready, best to update again).
Started some work on a userProfile/inventory cache.
Diffstat (limited to 'OpenSim/Framework/Data')
-rw-r--r--OpenSim/Framework/Data/InventoryData.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/Data/InventoryData.cs b/OpenSim/Framework/Data/InventoryData.cs
index c2a1d06..fe2e25c 100644
--- a/OpenSim/Framework/Data/InventoryData.cs
+++ b/OpenSim/Framework/Data/InventoryData.cs
@@ -56,6 +56,10 @@ namespace OpenSim.Framework.Data
56 /// </summary> 56 /// </summary>
57 public LLUUID avatarID; 57 public LLUUID avatarID;
58 /// <summary> 58 /// <summary>
59 /// The creator of this folder
60 /// </summary>
61 public LLUUID creatorsID;
62 /// <summary>
59 /// The name of the inventory item (must be less than 64 characters) 63 /// The name of the inventory item (must be less than 64 characters)
60 /// </summary> 64 /// </summary>
61 public string inventoryName; 65 public string inventoryName;
@@ -94,6 +98,14 @@ namespace OpenSim.Framework.Data
94 /// The UUID for this folder 98 /// The UUID for this folder
95 /// </summary> 99 /// </summary>
96 public LLUUID folderID; 100 public LLUUID folderID;
101 /// <summary>
102 /// Tyep of Items normally stored in this folder
103 /// </summary>
104 public ushort type;
105 /// <summary>
106 ///
107 /// </summary>
108 public ushort version;
97 } 109 }
98 110
99 /// <summary> 111 /// <summary>