]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.h
ShellPkg: acpiview: Add GT Frame Number validation to GTDT parser
[mirror_edk2.git] / ShellPkg / Library / UefiShellCommandLib / UefiShellCommandLib.h
1 /** @file
2 Provides interface to shell internal functions for shell commands.
3
4 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved. <BR>
5 (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _UEFI_COMMAND_LIB_INTERNAL_HEADER_
11 #define _UEFI_COMMAND_LIB_INTERNAL_HEADER_
12
13 #include <Uefi.h>
14
15 #include <Guid/FileInfo.h>
16 #include <Guid/GlobalVariable.h>
17
18 #include <Protocol/SimpleFileSystem.h>
19 #include <Protocol/LoadedImage.h>
20 #include <Protocol/EfiShellInterface.h>
21 #include <Protocol/EfiShellEnvironment2.h>
22 #include <Protocol/Shell.h>
23 #include <Protocol/ShellParameters.h>
24 #include <Protocol/UnicodeCollation.h>
25 #include <Protocol/BlockIo.h>
26 #include <Protocol/ShellDynamicCommand.h>
27
28 #include <Library/DevicePathLib.h>
29 #include <Library/SortLib.h>
30 #include <Library/HandleParsingLib.h>
31 #include <Library/BaseLib.h>
32 #include <Library/BaseMemoryLib.h>
33 #include <Library/DebugLib.h>
34 #include <Library/MemoryAllocationLib.h>
35 #include <Library/PcdLib.h>
36 #include <Library/ShellCommandLib.h>
37 #include <Library/PrintLib.h>
38 #include <Library/ShellLib.h>
39 #include <Library/HiiLib.h>
40 #include <Library/UefiBootServicesTableLib.h>
41 #include <Library/UefiLib.h>
42
43 typedef struct{
44 LIST_ENTRY Link;
45 CHAR16 *CommandString;
46 SHELL_GET_MAN_FILENAME GetManFileName;
47 SHELL_RUN_COMMAND CommandHandler;
48 BOOLEAN LastError;
49 EFI_HANDLE HiiHandle;
50 EFI_STRING_ID ManFormatHelp;
51 } SHELL_COMMAND_INTERNAL_LIST_ENTRY;
52
53 typedef struct {
54 LIST_ENTRY Link;
55 SCRIPT_FILE *Data;
56 } SCRIPT_FILE_LIST;
57
58 typedef struct {
59 EFI_FILE_PROTOCOL *FileHandle;
60 CHAR16 *Path;
61 } SHELL_COMMAND_FILE_HANDLE;
62
63
64 #endif //_UEFI_COMMAND_LIB_INTERNAL_HEADER_
65