diff options
Diffstat (limited to 'compiler/aslcompiler.h')
-rw-r--r-- | compiler/aslcompiler.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/compiler/aslcompiler.h b/compiler/aslcompiler.h index 69640c08d80c..54162a7c5e7d 100644 --- a/compiler/aslcompiler.h +++ b/compiler/aslcompiler.h @@ -2,7 +2,6 @@ /****************************************************************************** * * Module Name: aslcompiler.h - common include file for iASL - * $Revision: 1.148 $ * *****************************************************************************/ @@ -10,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp. * All rights reserved. * * 2. License @@ -140,6 +139,7 @@ #include "acpi.h" +#include "accommon.h" #include "amlresrc.h" #include "acdebug.h" @@ -188,6 +188,16 @@ AslPushInputFileStack ( FILE *InputFile, char *Filename); +/* + * aslstartup - called from main + */ +ACPI_STATUS +AslDoOnePathname ( + char *Pathname); + +ACPI_STATUS +AslDoOneFile ( + char *Filename); /* * aslcompile - compile mainline @@ -307,6 +317,10 @@ void AePrintErrorLog ( UINT32 FileId); +void +AeClearErrorLog ( + void); + ACPI_PHYSICAL_ADDRESS AeLocalGetRootPointer ( void); |