:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / drivers / bus / acpi / include / acpi.h
1 /******************************************************************************
2  *
3  * Name: acpi.h - Master include file, Publics and external data.
4  *       $Revision$
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 /*
30  * Common includes for all ACPI driver files
31  * We put them here because we don't want to duplicate them
32  * in the rest of the source code again and again.
33  */
34 #include "acconfig.h"           /* Configuration constants */
35 #include "platform/acenv.h"     /* Target environment specific items */
36 #include "actypes.h"            /* Fundamental common data types */
37 #include "acexcep.h"            /* ACPI exception codes */
38 #include "acmacros.h"           /* C macros */
39 #include "actbl.h"              /* ACPI table definitions */
40 #include "aclocal.h"            /* Internal data types */
41 #include "acoutput.h"           /* Error output and Debug macros */
42 #include "acpiosxf.h"           /* Interfaces to the ACPI-to-OS layer*/
43 #include "acpixf.h"             /* ACPI core subsystem external interfaces */
44 #include "acobject.h"           /* ACPI internal object */
45 #include "acstruct.h"           /* Common structures */
46 #include "acglobal.h"           /* All global variables */
47 #include "achware.h"            /* Hardware defines and interfaces */
48 #include "accommon.h"           /* Common interfaces */
49
50
51 #endif /* __ACPI_H__ */