2018-06-04 09:14:51 +08:00
|
|
|
/** @file
|
2018-04-20 16:08:22 +08:00
|
|
|
Header file for 'acpiview' Shell command functions.
|
|
|
|
|
2020-06-19 19:59:54 +08:00
|
|
|
Copyright (c) 2016 - 2020, ARM Limited. All rights reserved.<BR>
|
2019-04-04 07:07:06 +08:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2018-04-20 16:08:22 +08:00
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef UEFI_SHELL_ACPIVIEW_COMMAND_LIB_H_
|
|
|
|
#define UEFI_SHELL_ACPIVIEW_COMMAND_LIB_H_
|
|
|
|
|
|
|
|
extern EFI_HII_HANDLE gShellAcpiViewHiiHandle;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Function for 'acpiview' command.
|
|
|
|
|
2020-06-19 19:59:54 +08:00
|
|
|
@param[in] ImageHandle Handle to the Image (NULL if internal).
|
|
|
|
@param[in] SystemTable Pointer to the System Table (NULL if internal).
|
|
|
|
|
|
|
|
@retval SHELL_INVALID_PARAMETER The command line invocation could not be parsed
|
|
|
|
@retval SHELL_NOT_FOUND The command failed
|
|
|
|
@retval SHELL_SUCCESS The command was successful
|
2018-06-04 09:14:51 +08:00
|
|
|
**/
|
2018-04-20 16:08:22 +08:00
|
|
|
SHELL_STATUS
|
|
|
|
EFIAPI
|
|
|
|
ShellCommandRunAcpiView (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif // UEFI_SHELL_ACPIVIEW_COMMAND_LIB_H_
|