Create a branch for network fixes.
[reactos.git] / 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_ARM)
77 #include <arch/arm/hardware.h>
78 #elif defined(_M_MIPS)
79 #include <arch/mips/arcbios.h>
80 #endif
81 /* misc files */
82 #include <keycodes.h>
83 #include <ver.h>
84 #include <cmdline.h>
85 #include <bget.h>
86 /* Needed by boot manager */
87 #include <bootmgr.h>
88 #include <oslist.h>
89 #include <drivemap.h>
90 #include <miscboot.h>
91 #include <options.h>
92 #include <linux.h>
93 /* Externals */
94 #include <reactos/rossym.h>
95 #include <reactos/buildno.h>
96 #include <reactos/helper.h>
97 /* Needed if debuging is enabled */
98 #include <comm.h>
99 /* Swap */
100 #include <bytesex.h>
101
102 /* arch defines */
103 #ifdef _X86_
104 #define Ke386EraseFlags(x) __asm__ __volatile__("pushl $0 ; popfl\n")
105 #endif
106
107 VOID BootMain(LPSTR CmdLine);
108 VOID RunLoader(VOID);
109
110 #endif // defined __FREELDR_H