dll: fsctl.c, ntstatus.c

This commit is contained in:
Bill Zissimopoulos
2015-11-25 16:04:05 -08:00
parent ceb46a8c55
commit 1ad43de1a1
6 changed files with 119 additions and 3 deletions

12
src/dll/ntstatus.c Normal file
View File

@ -0,0 +1,12 @@
/**
* @file dll/ntstatus.c
*
* @copyright 2015 Bill Zissimopoulos
*/
#include <winfsp/winfsp.h>
NTSTATUS FspNtStatusFromWin32(DWORD Error)
{
return STATUS_ACCESS_DENIED;
}