mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Hardware Abstraction Layer
|
|
* FILE: hal/halx86/include/hal.h
|
|
* PURPOSE: HAL Header
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
/* C Headers */
|
|
#include <stdio.h>
|
|
|
|
/* WDK HAL Compilation hack */
|
|
#include <excpt.h>
|
|
#include <ntdef.h>
|
|
#ifndef _MINIHAL_
|
|
#undef NTSYSAPI
|
|
#define NTSYSAPI __declspec(dllimport)
|
|
#else
|
|
#undef NTSYSAPI
|
|
#define NTSYSAPI
|
|
#endif
|
|
|
|
/* IFS/DDK/NDK Headers */
|
|
#include <ntifs.h>
|
|
#include <bugcodes.h>
|
|
#include <ntdddisk.h>
|
|
#include <arc/arc.h>
|
|
#include <ntndk.h>
|
|
|
|
/* Internal shared PCI and ACPI header */
|
|
#include <drivers/pci/pci.h>
|
|
#include <drivers/acpi/acpi.h>
|
|
|
|
/* Internal kernel headers */
|
|
#define KeGetCurrentThread _KeGetCurrentThread
|
|
#ifdef _M_AMD64
|
|
#include <internal/amd64/ke.h>
|
|
#include <internal/amd64/mm.h>
|
|
#include "internal/amd64/intrin_i.h"
|
|
#else
|
|
#include <internal/i386/ke.h>
|
|
#include <internal/i386/mm.h>
|
|
#include "internal/i386/intrin_i.h"
|
|
#endif
|
|
|
|
/* Internal HAL Headers */
|
|
#include "apic.h"
|
|
#include "bus.h"
|
|
#include "halirq.h"
|
|
#include "haldma.h"
|
|
#include "halp.h"
|
|
#include "mps.h"
|
|
#include "ioapic.h"
|
|
#include "halacpi.h"
|
|
|
|
/* EOF */
|