[CMAKE]
[reactos.git] / reactos / boot / freeldr / freeldr / rtl / libsupp.c
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>
4 * Copyright (C) 2006 Aleksey Bragin <aleksey@reactos.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include <freeldr.h>
22
23 #if DBG
24 VOID FASTCALL
25 CHECK_PAGED_CODE_RTL(char *file, int line)
26 {
27 // boot-code is always ok
28 }
29 #endif
30
31 PVOID
32 NTAPI
33 RtlpAllocateMemory(ULONG Bytes,
34 ULONG Tag)
35 {
36 return FrLdrHeapAllocateEx(FrLdrDefaultHeap, Bytes, Tag);
37 }
38
39
40 VOID
41 NTAPI
42 RtlpFreeMemory(PVOID Mem,
43 ULONG Tag)
44 {
45 FrLdrHeapFreeEx(FrLdrDefaultHeap, Mem, Tag);
46 }
47
48 NTSTATUS
49 NTAPI
50 RtlpSafeCopyMemory(
51 _Out_writes_bytes_all_(Length) VOID UNALIGNED *Destination,
52 _In_reads_bytes_(Length) CONST VOID UNALIGNED *Source,
53 _In_ SIZE_T Length)
54 {
55 RtlCopyMemory(Destination, Source, Length);
56 return STATUS_SUCCESS;
57 }