src: dotnet: WIP

This commit is contained in:
Bill Zissimopoulos 2017-04-07 13:52:26 -07:00
parent f117a89697
commit c79785c2db

View File

@ -174,6 +174,16 @@ namespace Fsp
return _FileSystem; return _FileSystem;
} }
/* helpers */
public static Int32 NtStatusFromWin32(UInt32 Error)
{
return Api.FspNtStatusFromWin32(Error);
}
public static UInt32 Win32FromNtStatus(Int32 Status)
{
return Api.FspWin32FromNtStatus(Status);
}
/* operations */ /* operations */
protected virtual Int32 ExceptionHandler(Exception ex) protected virtual Int32 ExceptionHandler(Exception ex)
{ {