- Add simple support functions to be able to use more RTL in FreeLdr
authorAleksey Bragin <aleksey@reactos.org>
Sun, 8 Oct 2006 08:54:44 +0000 (08:54 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Sun, 8 Oct 2006 08:54:44 +0000 (08:54 +0000)
svn path=/trunk/; revision=24442

reactos/boot/freeldr/freeldr/freeldr_base.rbuild
reactos/boot/freeldr/freeldr/rtl/libsupp.c [new file with mode: 0644]

index 198a642..fe4cf46 100644 (file)
@@ -52,6 +52,7 @@
                <file>reactos.c</file>
        </directory>
        <directory name="rtl">
+               <file>libsupp.c</file>
                <file>list.c</file>
        </directory>
        <directory name="ui">
diff --git a/reactos/boot/freeldr/freeldr/rtl/libsupp.c b/reactos/boot/freeldr/freeldr/rtl/libsupp.c
new file mode 100644 (file)
index 0000000..6236367
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+ *  FreeLoader
+ *  Copyright (C) 1998-2003 Brian Palmer   <brianp@sginet.com>
+ *  Copyright (C) 2006      Aleksey Bragin <aleksey@reactos.org>
+ *
+ *  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);
+}