- Implement HalSystemVectorDispatchEntry, KeFlushWriteBuffer, HalFlushCommonBuffer...
[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 Complation 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 #endif
22
23 /* IFS/DDK/NDK Headers */
24 #include <ntifs.h>
25 #include <ntdddisk.h>
26 #include <arc/arc.h>
27 #include <iotypes.h>
28 #include <kefuncs.h>
29 #include <halfuncs.h>
30 #include <iofuncs.h>
31 #include <ldrtypes.h>
32
33 #define KPCR_BASE 0xFF000000 // HACK!
34
35 /* Internal HAL Headers */
36 #include "internal/pci.h"
37 #include "apic.h"
38 #include "bus.h"
39 #include "halirq.h"
40 #include "haldma.h"
41 #include "halp.h"
42 #include "mps.h"
43 #include "ioapic.h"
44
45 /* Helper Header */
46 #include <reactos/helper.h>
47
48 /* EOF */