diff options
Diffstat (limited to 'OpenSim/Framework/General/NullClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index 6be2563..e001549 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -59,6 +59,7 @@ namespace OpenSim.Framework | |||
59 | public event RequestTaskInventory OnRequestTaskInventory; | 59 | public event RequestTaskInventory OnRequestTaskInventory; |
60 | public event UDPAssetUploadRequest OnAssetUploadRequest; | 60 | public event UDPAssetUploadRequest OnAssetUploadRequest; |
61 | public event XferReceive OnXferReceive; | 61 | public event XferReceive OnXferReceive; |
62 | public event RequestXfer OnRequestXfer; | ||
62 | 63 | ||
63 | public event UUIDNameRequest OnNameFromUUIDRequest; | 64 | public event UUIDNameRequest OnNameFromUUIDRequest; |
64 | 65 | ||
@@ -140,6 +141,10 @@ namespace OpenSim.Framework | |||
140 | public virtual void SendInventoryItemUpdate(InventoryItemBase Item) { } | 141 | public virtual void SendInventoryItemUpdate(InventoryItemBase Item) { } |
141 | public virtual void SendRemoveInventoryItem(LLUUID itemID) { } | 142 | public virtual void SendRemoveInventoryItem(LLUUID itemID) { } |
142 | public virtual void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName) { } | 143 | public virtual void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName) { } |
144 | public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data) { } | ||
145 | |||
146 | public virtual void SendPreLoadSound(LLUUID objectID, LLUUID ownerID, LLUUID soundID) { } | ||
147 | public virtual void SendPlayAttachedSound(LLUUID soundID, LLUUID objectID, LLUUID ownerID, float gain, byte flags) { } | ||
143 | 148 | ||
144 | public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname){} | 149 | public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname){} |
145 | public void SendAlertMessage(string message) { } | 150 | public void SendAlertMessage(string message) { } |
@@ -151,6 +156,8 @@ namespace OpenSim.Framework | |||
151 | { | 156 | { |
152 | return false; | 157 | return false; |
153 | } | 158 | } |
159 | |||
160 | public void SendViewerTime(int phase) { } | ||
154 | } | 161 | } |
155 | } | 162 | } |
156 | 163 | ||