diff options
author | Jeff Ames | 2008-12-13 12:22:52 +0000 |
---|---|---|
committer | Jeff Ames | 2008-12-13 12:22:52 +0000 |
commit | 4f9d5d955b08c18733d72d4b70e441c555b6bccf (patch) | |
tree | eef69a77f1e074b5369fdee2eac6112eb50111dc /OpenSim/Framework/IClientFileTransfer.cs | |
parent | more work on moving FileTransfer code to the clientstack. (diff) | |
download | opensim-SC_OLD-4f9d5d955b08c18733d72d4b70e441c555b6bccf.zip opensim-SC_OLD-4f9d5d955b08c18733d72d4b70e441c555b6bccf.tar.gz opensim-SC_OLD-4f9d5d955b08c18733d72d4b70e441c555b6bccf.tar.bz2 opensim-SC_OLD-4f9d5d955b08c18733d72d4b70e441c555b6bccf.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Framework/IClientFileTransfer.cs')
-rw-r--r-- | OpenSim/Framework/IClientFileTransfer.cs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/OpenSim/Framework/IClientFileTransfer.cs b/OpenSim/Framework/IClientFileTransfer.cs index ec8e623..fc9ec79 100644 --- a/OpenSim/Framework/IClientFileTransfer.cs +++ b/OpenSim/Framework/IClientFileTransfer.cs | |||
@@ -1,15 +1,15 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenMetaverse; | 4 | using OpenMetaverse; |
5 | 5 | ||
6 | namespace OpenSim.Framework | 6 | namespace OpenSim.Framework |
7 | { | 7 | { |
8 | public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient); | 8 | public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient); |
9 | public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient); | 9 | public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient); |
10 | 10 | ||
11 | public interface IClientFileTransfer | 11 | public interface IClientFileTransfer |
12 | { | 12 | { |
13 | bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback); | 13 | bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback); |
14 | } | 14 | } |
15 | } | 15 | } |