]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.h
ShellPkg/AcpiView: Move parameter parsing
[mirror_edk2.git] / ShellPkg / Library / UefiShellAcpiViewCommandLib / UefiShellAcpiViewCommandLib.h
1 /** @file
2 Header file for 'acpiview' Shell command functions.
3
4 Copyright (c) 2016 - 2020, ARM Limited. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6 **/
7
8 #ifndef UEFI_SHELL_ACPIVIEW_COMMAND_LIB_H_
9 #define UEFI_SHELL_ACPIVIEW_COMMAND_LIB_H_
10
11 extern EFI_HII_HANDLE gShellAcpiViewHiiHandle;
12
13 /**
14 Function for 'acpiview' command.
15
16 @param[in] ImageHandle Handle to the Image (NULL if internal).
17 @param[in] SystemTable Pointer to the System Table (NULL if internal).
18
19 @retval SHELL_INVALID_PARAMETER The command line invocation could not be parsed
20 @retval SHELL_NOT_FOUND The command failed
21 @retval SHELL_SUCCESS The command was successful
22 **/
23 SHELL_STATUS
24 EFIAPI
25 ShellCommandRunAcpiView (
26 IN EFI_HANDLE ImageHandle,
27 IN EFI_SYSTEM_TABLE *SystemTable
28 );
29
30 #endif // UEFI_SHELL_ACPIVIEW_COMMAND_LIB_H_