Remove SetLastErrorByStatus, since it's no longer needed (it is a macro

now) and is giving compile errors

svn path=/trunk/; revision=4590
This commit is contained in:
Gé van Geldorp 2003-04-26 12:50:56 +00:00
parent ffa4267973
commit 01a868d4b8

View file

@ -1,4 +1,4 @@
/* $Id: error.c,v 1.17 2003/01/15 21:24:34 chorns Exp $
/* $Id: error.c,v 1.18 2003/04/26 12:50:56 gvg Exp $
*
* reactos/lib/kernel32/misc/error.c
*
@ -10,19 +10,6 @@
#include <kernel32/kernel32.h>
/* INTERNAL */
DWORD
STDCALL
SetLastErrorByStatus (
NTSTATUS Status
)
{
DWORD Error = RtlNtStatusToDosError (Status);
SetLastError (Error);
return (Error);
}
VOID
STDCALL
SetLastError (