diff options
author | MW | 2007-08-15 18:34:36 +0000 |
---|---|---|
committer | MW | 2007-08-15 18:34:36 +0000 |
commit | 94dded470d04f72c573bf0aa82e1f7522362c54a (patch) | |
tree | 0ecb098a3b75a6b0fee01c21ca11c614a32bceef /OpenSim/Framework/General | |
parent | * We now have a field of spinning objects. (diff) | |
download | opensim-SC_OLD-94dded470d04f72c573bf0aa82e1f7522362c54a.zip opensim-SC_OLD-94dded470d04f72c573bf0aa82e1f7522362c54a.tar.gz opensim-SC_OLD-94dded470d04f72c573bf0aa82e1f7522362c54a.tar.bz2 opensim-SC_OLD-94dded470d04f72c573bf0aa82e1f7522362c54a.tar.xz |
More work on inventory, can now create other inventory types, like Clothes and body parts. [Note while you can edit these, at the moment your changes won't be saved between restarts. This will be fixed very soon.]
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 5 | ||||
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index 1af96e7..ff794f9 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -87,6 +87,9 @@ namespace OpenSim.Framework.Interfaces | |||
87 | public delegate void FetchInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID ownerID); | 87 | public delegate void FetchInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID ownerID); |
88 | public delegate void RequestTaskInventory(IClientAPI remoteClient, uint localID); | 88 | public delegate void RequestTaskInventory(IClientAPI remoteClient, uint localID); |
89 | 89 | ||
90 | public delegate void UDPAssetUploadRequest(IClientAPI remoteClient, LLUUID assetID, LLUUID transaction, sbyte type, byte[] data); | ||
91 | public delegate void XferReceive(IClientAPI remoteClient, ulong xferID, uint packetID, byte[] data); | ||
92 | |||
90 | public interface IClientAPI | 93 | public interface IClientAPI |
91 | { | 94 | { |
92 | event ImprovedInstantMessage OnInstantMessage; | 95 | event ImprovedInstantMessage OnInstantMessage; |
@@ -135,6 +138,8 @@ namespace OpenSim.Framework.Interfaces | |||
135 | event FetchInventoryDescendents OnFetchInventoryDescendents; | 138 | event FetchInventoryDescendents OnFetchInventoryDescendents; |
136 | event FetchInventory OnFetchInventory; | 139 | event FetchInventory OnFetchInventory; |
137 | event RequestTaskInventory OnRequestTaskInventory; | 140 | event RequestTaskInventory OnRequestTaskInventory; |
141 | event UDPAssetUploadRequest OnAssetUploadRequest; | ||
142 | event XferReceive OnXferReceive; | ||
138 | 143 | ||
139 | event UUIDNameRequest OnNameFromUUIDRequest; | 144 | event UUIDNameRequest OnNameFromUUIDRequest; |
140 | 145 | ||
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index 864ea60..876c9b3 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -57,6 +57,8 @@ namespace OpenSim.Framework | |||
57 | public event FetchInventoryDescendents OnFetchInventoryDescendents; | 57 | public event FetchInventoryDescendents OnFetchInventoryDescendents; |
58 | public event FetchInventory OnFetchInventory; | 58 | public event FetchInventory OnFetchInventory; |
59 | public event RequestTaskInventory OnRequestTaskInventory; | 59 | public event RequestTaskInventory OnRequestTaskInventory; |
60 | public event UDPAssetUploadRequest OnAssetUploadRequest; | ||
61 | public event XferReceive OnXferReceive; | ||
60 | 62 | ||
61 | public event UUIDNameRequest OnNameFromUUIDRequest; | 63 | public event UUIDNameRequest OnNameFromUUIDRequest; |
62 | 64 | ||