dotnet: EA support

This commit is contained in:
Bill Zissimopoulos
2019-03-21 15:05:14 -07:00
parent 62b0e889b2
commit 948254f083
2 changed files with 26 additions and 1 deletions

View File

@ -1445,6 +1445,13 @@ namespace Fsp
return self.ExceptionHandler(ex);
}
}
public static UInt32 GetEaEntrySize(
String EaName,
Byte[] EaValue,
Boolean NeedEa)
{
return FullEaInformation.Size(EaName, EaValue, NeedEa);
}
}
}