stub out cifs support

This commit is contained in:
Luke Pulverenti
2017-04-01 20:36:06 -04:00
parent d4d6314c5a
commit 733b891f52
227 changed files with 38755 additions and 30 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.IO;
namespace SharpCifs.Util.Sharpen
{
internal class ObjectInputStream : InputStream
{
private BinaryReader _reader;
public ObjectInputStream (InputStream s)
{
_reader = new BinaryReader (s.GetWrappedStream ());
}
public int ReadInt ()
{
return _reader.ReadInt32 ();
}
public object ReadObject ()
{
throw new NotImplementedException ();
}
}
}