Merge trunk HEAD (r46369)
[reactos.git] / reactos / drivers / bus / acpi / include / acpi.h
1 /******************************************************************************
2 *
3 * Name: acpi.h - Master include file, Publics and external data.
4 * $Revision: 1.2 $
5 *
6 *****************************************************************************/
7
8 /*
9 * Copyright (C) 2000, 2001 R. Byron Moore
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 #ifndef __ACPI_H__
27 #define __ACPI_H__
28
29 #include "platform/types.h"
30 #undef ROUND_DOWN
31 #undef ROUND_UP
32 #define DEFINE_ACPI_GLOBALS
33
34 /*
35 * Common includes for all ACPI driver files
36 * We put them here because we don't want to duplicate them
37 * in the rest of the source code again and again.
38 */
39 #include "acconfig.h" /* Configuration constants */
40 #include "platform/acenv.h" /* Target environment specific items */
41 #include "actypes.h" /* Fundamental common data types */
42 #include "acexcep.h" /* ACPI exception codes */
43 #include "acmacros.h" /* C macros */
44 #include "actbl.h" /* ACPI table definitions */
45 #include "aclocal.h" /* Internal data types */
46 #include "acoutput.h" /* Error output and Debug macros */
47 #include "acpiosxf.h" /* Interfaces to the ACPI-to-OS layer*/
48 #include "acpixf.h" /* ACPI core subsystem external interfaces */
49 #include "acobject.h" /* ACPI internal object */
50 #include "acstruct.h" /* Common structures */
51 #include "acglobal.h" /* All global variables */
52 #include "achware.h" /* Hardware defines and interfaces */
53 #include "accommon.h" /* Common interfaces */
54 #include "acresrc.h" /* Resource Manager function prototypes */
55 #include "acparser.h"
56 #include "acinterp.h"
57 #include "amlcode.h"
58 #include "acnamesp.h"
59 #include "acevents.h"
60 #include "actables.h"
61 #include "acdispat.h"
62 #include <ntddk.h>
63 #include <ndk/haltypes.h>
64 #include <bm.h>
65 #include <bn.h>
66 #include <bmpower.h>
67 #include <acpisys.h>
68 #include <acglobal.h>
69
70 #endif /* __ACPI_H__ */