Sync with trunk r43000
[reactos.git] / reactos / hal / halx86 / include / hal.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Hardware Abstraction Layer
4 * FILE: hal/halx86/include/hal.h
5 * PURPOSE: HAL Header
6 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* C Headers */
12 #include <stdio.h>
13
14 /* WDK HAL Compilation hack */
15 #include <excpt.h>
16 #include <ntdef.h>
17 #undef _NTHAL_
18 #undef DECLSPEC_IMPORT
19 #define DECLSPEC_IMPORT
20 #undef NTSYSAPI
21 #define NTSYSAPI __declspec(dllimport)
22
23 /* IFS/DDK/NDK Headers */
24 #include <ntifs.h>
25 #include <bugcodes.h>
26 #include <ntdddisk.h>
27 #include <arc/arc.h>
28 #include <iotypes.h>
29 #include <kefuncs.h>
30 #include <halfuncs.h>
31 #include <iofuncs.h>
32 #include <ldrtypes.h>
33 #include <obfuncs.h>
34
35 /* Internal kernel headers */
36 #include "internal/pci.h"
37 #ifdef _M_AMD64
38 #include "internal/amd64/intrin_i.h"
39 #else
40 #include "internal/i386/intrin_i.h"
41 #endif
42
43 /* Internal HAL Headers */
44 #include "apic.h"
45 #include "bus.h"
46 #include "halirq.h"
47 #include "haldma.h"
48 #include "halp.h"
49 #include "mps.h"
50 #include "ioapic.h"
51
52 /* EOF */