2008-02-08 17:13:09 +00:00
|
|
|
/*
|
2008-06-15 07:54:18 +00:00
|
|
|
* PROJECT: ReactOS HAL
|
2008-06-29 02:58:05 +00:00
|
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
2008-06-15 07:54:18 +00:00
|
|
|
* FILE: hal/halarm/include/hal.h
|
|
|
|
* PURPOSE: Hardware Abstraction Layer Header
|
|
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
2008-02-08 17:13:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
/* C Headers */
|
2010-02-09 02:26:28 +00:00
|
|
|
#define DbgPrint DbgPrintEarly
|
2008-02-08 17:13:09 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/* WDK HAL Compilation hack */
|
|
|
|
#include <excpt.h>
|
|
|
|
#include <ntdef.h>
|
|
|
|
#undef _NTHAL_
|
|
|
|
#undef DECLSPEC_IMPORT
|
|
|
|
#define DECLSPEC_IMPORT
|
2009-08-07 10:45:59 +00:00
|
|
|
#undef NTSYSAPI
|
|
|
|
#define NTSYSAPI __declspec(dllimport)
|
2008-02-08 17:13:09 +00:00
|
|
|
|
|
|
|
/* IFS/DDK/NDK Headers */
|
|
|
|
#include <ntifs.h>
|
2010-02-09 02:26:28 +00:00
|
|
|
#include <ioaccess.h>
|
2008-02-08 17:13:09 +00:00
|
|
|
#include <bugcodes.h>
|
|
|
|
#include <ntdddisk.h>
|
|
|
|
#include <arc/arc.h>
|
|
|
|
#include <iotypes.h>
|
|
|
|
#include <kefuncs.h>
|
|
|
|
#include <intrin.h>
|
|
|
|
#include <halfuncs.h>
|
2010-02-09 02:26:28 +00:00
|
|
|
#include <inbvfuncs.h>
|
2008-02-08 17:13:09 +00:00
|
|
|
#include <iofuncs.h>
|
|
|
|
#include <ldrtypes.h>
|
|
|
|
#include <obfuncs.h>
|
|
|
|
|
|
|
|
/* Internal HAL Headers */
|
|
|
|
#include "halp.h"
|
|
|
|
|
|
|
|
/* EOF */
|