Merge from amd64-branch:
[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 #ifndef _MINIHAL_
18 #undef NTSYSAPI
19 #define NTSYSAPI __declspec(dllimport)
20 #else
21 #undef NTSYSAPI
22 #define NTSYSAPI
23 #endif
24
25 /* IFS/DDK/NDK Headers */
26 #include <ntifs.h>
27 #include <bugcodes.h>
28 #include <ntdddisk.h>
29 #include <arc/arc.h>
30 #include <ntndk.h>
31
32 /* Internal kernel headers */
33 #include "internal/pci.h"
34 #define KeGetCurrentThread _KeGetCurrentThread
35 #include <internal/i386/ke.h>
36 #include <internal/i386/mm.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 */