- Add simple support functions to be able to use more RTL in FreeLdr

svn path=/trunk/; revision=24442
This commit is contained in:
Aleksey Bragin
2006-10-08 08:54:44 +00:00
parent 6d262bb755
commit 3c3080f16b
2 changed files with 47 additions and 0 deletions
@@ -52,6 +52,7 @@
<file>reactos.c</file>
</directory>
<directory name="rtl">
<file>libsupp.c</file>
<file>list.c</file>
</directory>
<directory name="ui">
@@ -0,0 +1,46 @@
/*
* FreeLoader
* Copyright (C) 1998-2003 Brian Palmer <[email protected]>
* Copyright (C) 2006 Aleksey Bragin <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <freeldr.h>
#ifdef DBG
VOID FASTCALL
CHECK_PAGED_CODE_RTL(char *file, int line)
{
// boot-code is always ok
}
#endif
PVOID
STDCALL
RtlpAllocateMemory(ULONG Bytes,
ULONG Tag)
{
return MmAllocateMemory(Bytes);
}
VOID
STDCALL
RtlpFreeMemory(PVOID Mem,
ULONG Tag)
{
return MmFreeMemory(Mem);
}