1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-12-26 22:12:44 -06:00

dll: FspNtStatusFromWin32 implementation

This commit is contained in:
Bill Zissimopoulos
2015-11-25 17:49:40 -08:00
parent 57b25ce660
commit cc19002437
4 changed files with 571 additions and 3 deletions

View File

@@ -8,5 +8,10 @@
NTSTATUS FspNtStatusFromWin32(DWORD Error)
{
return STATUS_ACCESS_DENIED;
switch (Error)
{
#include "ntstatus.i"
default:
return STATUS_ACCESS_DENIED;
}
}