tst: memfs-dotnet: WIP

This commit is contained in:
Bill Zissimopoulos
2017-05-05 12:08:32 -07:00
parent 151627091b
commit 4278cec465
3 changed files with 215 additions and 27 deletions

View File

@ -408,7 +408,7 @@ namespace Fsp
Marker, Buffer, Length, out BytesTransferred);
return STATUS_SUCCESS;
}
public Int32 FindReparsePoint(
public Boolean FindReparsePoint(
String FileName,
out UInt32 ReparsePointIndex)
{

View File

@ -471,7 +471,8 @@ namespace Fsp.Interop
UInt32 Length,
out UInt32 PBytesTransferred);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
internal delegate Int32 FspFileSystemFindReparsePoint(
[return: MarshalAs(UnmanagedType.U1)]
internal delegate Boolean FspFileSystemFindReparsePoint(
IntPtr FileSystem,
GetReparsePointByName GetReparsePointByName,
IntPtr Context,