The Windows headers include a file called ioaccess.h in the ddk folder, which exposes...
[reactos.git] / reactos / boot / freeldr / freeldr / include / freeldr.h
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __FREELDR_H
21 #define __FREELDR_H
22
23 #define UINT64_C(val) val##ULL
24
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <ctype.h>
28 #define NTOSAPI
29 #define printf TuiPrintf
30 #include <ntddk.h>
31 #include <ioaccess.h>
32 #include <arc/arc.h>
33 #include <ketypes.h>
34 #include <mmtypes.h>
35 #include <rosldr.h>
36 #include <arch.h>
37 #include <rtl.h>
38 #include <disk.h>
39 #include <fs.h>
40 #include <ui.h>
41 #include <multiboot.h>
42 #include <mm.h>
43 #include <cache.h>
44 #include <machine.h>
45 #include <inifile.h>
46 #include <inffile.h>
47 #include <video.h>
48 #include <ramdisk.h>
49 /* NDK, needed for ReactOS/Windows loaders */
50 #include <ndk/rtlfuncs.h>
51 #include <ndk/ldrtypes.h>
52 #include <reactos.h>
53 #include <registry.h>
54 #include <winldr.h>
55 #include <fsrec.h>
56 /* file system headers */
57 #include <fs/ext2.h>
58 #include <fs/fat.h>
59 #include <fs/ntfs.h>
60 #include <fs/iso.h>
61 /* ui support */
62 #include <ui/gui.h>
63 #include <ui/minitui.h>
64 #include <ui/noui.h>
65 #include <ui/tui.h>
66 /* arch files */
67 #if defined(_M_IX86)
68 #include <arch/i386/hardware.h>
69 #include <arch/i386/i386.h>
70 #include <arch/i386/machpc.h>
71 #include <arch/i386/machxbox.h>
72 #include <internal/i386/intrin_i.h>
73 #include <internal/i386/ke.h>
74 #elif defined(_M_PPC)
75 #include <arch/powerpc/hardware.h>
76 #elif defined(_M_MIPS)
77 #include <arch/mips/arcbios.h>
78 #endif
79 /* misc files */
80 #include <keycodes.h>
81 #include <ver.h>
82 #include <cmdline.h>
83 #include <bget.h>
84 /* Needed by boot manager */
85 #include <bootmgr.h>
86 #include <oslist.h>
87 #include <drivemap.h>
88 #include <miscboot.h>
89 #include <options.h>
90 #include <linux.h>
91 /* Externals */
92 #include <reactos/rossym.h>
93 #include <reactos/buildno.h>
94 #include <reactos/helper.h>
95 /* Needed if debuging is enabled */
96 #include <comm.h>
97 /* Swap */
98 #include <bytesex.h>
99
100 /* arch defines */
101 #ifdef _X86_
102 #define Ke386EraseFlags(x) __asm__ __volatile__("pushl $0 ; popfl\n")
103 #endif
104
105 VOID BootMain(LPSTR CmdLine);
106 VOID RunLoader(VOID);
107
108 #endif // defined __FREELDR_H