diff options
Diffstat (limited to 'tools/acpiexec/aecommon.h')
-rw-r--r-- | tools/acpiexec/aecommon.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/acpiexec/aecommon.h b/tools/acpiexec/aecommon.h index 3febf6f40c86b..3ad0d0f4064a8 100644 --- a/tools/acpiexec/aecommon.h +++ b/tools/acpiexec/aecommon.h @@ -138,6 +138,14 @@ extern FILE *AcpiGbl_DebugFile; extern BOOLEAN AcpiGbl_IgnoreErrors; + +typedef struct ae_table_desc +{ + ACPI_TABLE_HEADER *Table; + struct ae_table_desc *Next; + +} AE_TABLE_DESC; + /* * Debug Regions */ @@ -170,7 +178,8 @@ AeCtrlCHandler ( ACPI_STATUS AeBuildLocalTables ( - ACPI_TABLE_HEADER *UserTable); + UINT32 TableCount, + AE_TABLE_DESC *TableList); ACPI_STATUS AeInstallTables ( |