diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-12-18 18:35:46 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-12-18 18:35:46 +0000 |
| commit | 1c6f3e7bf6ed0a9ff1bd466e319cdf456e6e91dc (patch) | |
| tree | 9ffecbf2e9ce4e63aac5515363a488b761a02b03 /source/include/acapps.h | |
| parent | b9098066cd6284319bca922f13e59517f774a103 (diff) | |
Notes
Diffstat (limited to 'source/include/acapps.h')
| -rw-r--r-- | source/include/acapps.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/source/include/acapps.h b/source/include/acapps.h index 6652cefcd596..31d088b26e0c 100644 --- a/source/include/acapps.h +++ b/source/include/acapps.h @@ -91,7 +91,7 @@ AcpiOsPrintf (Description); #define ACPI_OPTION(Name, Description) \ - AcpiOsPrintf (" %-18s%s\n", Name, Description); + AcpiOsPrintf (" %-20s%s\n", Name, Description); /* Check for unexpected exceptions */ @@ -115,11 +115,21 @@ /* acfileio */ ACPI_STATUS -AcpiAcGetAllTablesFromFile ( +AcGetAllTablesFromFile ( char *Filename, UINT8 GetOnlyAmlTables, ACPI_NEW_TABLE_DESC **ReturnListHead); +BOOLEAN +AcIsFileBinary ( + FILE *File); + +ACPI_STATUS +AcValidateTableHeader ( + FILE *File, + long TableOffset); + + /* Values for GetOnlyAmlTables */ #define ACPI_GET_ONLY_AML_TABLES TRUE |
