more work on moving FileTransfer code to the clientstack.

Although its still not enabled.
This commit is contained in:
MW
2008-12-12 22:20:13 +00:00
parent 3aaf303a75
commit e0765fa6c8
2 changed files with 44 additions and 3 deletions

View File

@@ -1,10 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenMetaverse;
namespace OpenSim.Framework
{
public delegate void UploadComplete(string filename, byte[] fileData, IClientAPI remoteClient);
public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient);
public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient);
public interface IClientFileTransfer