mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
43 lines
954 B
C
43 lines
954 B
C
/*
|
|
* PROJECT: ReactOS HAL
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
|
* FILE: hal/halarm/include/hal.h
|
|
* PURPOSE: Hardware Abstraction Layer Header
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
/* C Headers */
|
|
#define DbgPrint DbgPrintEarly
|
|
#include <stdio.h>
|
|
|
|
/* WDK HAL Compilation hack */
|
|
#include <excpt.h>
|
|
#include <ntdef.h>
|
|
#undef _NTHAL_
|
|
#undef DECLSPEC_IMPORT
|
|
#define DECLSPEC_IMPORT
|
|
#undef NTSYSAPI
|
|
#define NTSYSAPI __declspec(dllimport)
|
|
|
|
/* IFS/DDK/NDK Headers */
|
|
#include <ntifs.h>
|
|
#include <ioaccess.h>
|
|
#include <bugcodes.h>
|
|
#include <ntdddisk.h>
|
|
#include <arc/arc.h>
|
|
#include <iotypes.h>
|
|
#include <kefuncs.h>
|
|
#include <intrin.h>
|
|
#include <halfuncs.h>
|
|
#include <inbvfuncs.h>
|
|
#include <iofuncs.h>
|
|
#include <ldrtypes.h>
|
|
#include <obfuncs.h>
|
|
|
|
/* Internal HAL Headers */
|
|
#include "halp.h"
|
|
|
|
/* EOF */
|