mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-24 01:13:04 -05:00
18 lines
262 B
C
18 lines
262 B
C
/**
|
|
* @file dll/ntstatus.c
|
|
*
|
|
* @copyright 2015 Bill Zissimopoulos
|
|
*/
|
|
|
|
#include <dll/library.h>
|
|
|
|
FSP_API NTSTATUS FspNtStatusFromWin32(DWORD Error)
|
|
{
|
|
switch (Error)
|
|
{
|
|
#include "ntstatus.i"
|
|
default:
|
|
return STATUS_ACCESS_DENIED;
|
|
}
|
|
}
|