mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
src: dotnet: GetReparseTag
This commit is contained in:
parent
8338a6e066
commit
eea0b1bc79
@ -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,
|
||||||
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user