move from 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 #ifdef _MSC_VER
16 #include <excpt.h>
17 #include <ntdef.h>
18 #undef _NTHAL_
19 #undef DECLSPEC_IMPORT
20 #define DECLSPEC_IMPORT
21 #define __declspec(dllimport)
22 #endif
23
24 /* IFS/DDK/NDK Headers */
25 #include <ntifs.h>
26 #include <bugcodes.h>
27 #include <ntdddisk.h>
28 #include <arc/arc.h>
29 #include <iotypes.h>
30 #include <kefuncs.h>
31 #include <intrin.h>
32 #include <halfuncs.h>
33 #include <iofuncs.h>
34 #include <ldrtypes.h>
35 #include <obfuncs.h>
36
37 /* Internal kernel headers */
38 #include "internal/pci.h"
39 #include "internal/i386/intrin_i.h"
40
41 /* Internal HAL Headers */
42 #include "apic.h"
43 #include "bus.h"
44 #include "halirq.h"
45 #include "haldma.h"
46 #include "halp.h"
47 #include "mps.h"
48 #include "ioapic.h"
49
50 /* Helper Header */
51 #include <reactos/helper.h>
52
53 /* EOF */