dll: Major refactoring: WIP

This commit is contained in:
Bill Zissimopoulos
2015-12-23 11:24:34 -08:00
parent 6f8e169bc4
commit 7033cc6095
8 changed files with 42 additions and 0 deletions

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

@ -0,0 +1,17 @@
/**
* @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;
}
}