src: dotnet: GetReparseTag

This commit is contained in:
Bill Zissimopoulos 2017-05-07 17:11:39 -07:00
parent 8338a6e066
commit eea0b1bc79
2 changed files with 1 additions and 6 deletions

View File

@ -453,7 +453,7 @@ namespace Fsp
public static UInt32 GetReparseTag( public static UInt32 GetReparseTag(
Byte[] ReparseData) Byte[] ReparseData)
{ {
return Api.GetReparseTag(ReparseData); return BitConverter.ToUInt32(ReparseData, 0);
} }
public static Int32 CanReplaceReparsePoint( public static Int32 CanReplaceReparsePoint(
Byte[] CurrentReparseData, Byte[] CurrentReparseData,

View File

@ -849,11 +849,6 @@ namespace Fsp.Interop
else else
return null; return null;
} }
internal unsafe static UInt32 GetReparseTag(
Byte[] ReparseData)
{
return 0;
}
internal unsafe static Int32 FspFileSystemCanReplaceReparsePoint( internal unsafe static Int32 FspFileSystemCanReplaceReparsePoint(
Byte[] CurrentReparseData, Byte[] CurrentReparseData,
Byte[] ReplaceReparseData) Byte[] ReplaceReparseData)