]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.h
Enhance code to more safely and follow coding style.
[mirror_edk2.git] / ShellPkg / Library / UefiShellInstall1CommandsLib / UefiShellInstall1CommandsLib.h
CommitLineData
75aadf59 1/** @file\r
2 Main file for NULL named library for install 1 shell command functions.\r
3\r
2398d9b1 4 Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
75aadf59 5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
a1d4bfcc 15#ifndef _UEFI_SHELL_INSTALL1_COMMANDS_LIB_H_\r
2398d9b1 16#define _UEFI_SHELL_INSTALL1_COMMANDS_LIB_H_\r
17\r
75aadf59 18#include <Uefi.h>\r
19#include <ShellBase.h>\r
20\r
bca163ff
LG
21#include <Guid/ShellLibHiiGuid.h>\r
22\r
75aadf59 23#include <Protocol/EfiShell.h>\r
24#include <Protocol/EfiShellParameters.h>\r
25#include <Protocol/DevicePath.h>\r
26#include <Protocol/LoadedImage.h>\r
27#include <Protocol/UnicodeCollation.h>\r
28#include <Protocol/DevicePathToText.h>\r
29\r
30#include <Library/BaseLib.h>\r
31#include <Library/BaseMemoryLib.h>\r
32#include <Library/DebugLib.h>\r
33#include <Library/MemoryAllocationLib.h>\r
34#include <Library/PcdLib.h>\r
35#include <Library/ShellCommandLib.h>\r
36#include <Library/ShellLib.h>\r
37#include <Library/SortLib.h>\r
38#include <Library/UefiLib.h>\r
39#include <Library/UefiRuntimeServicesTableLib.h>\r
40#include <Library/UefiBootServicesTableLib.h>\r
41#include <Library/HiiLib.h>\r
42#include <Library/FileHandleLib.h>\r
43\r
44extern EFI_HANDLE gShellInstall1HiiHandle;\r
75aadf59 45\r
46/**\r
47 Function for 'bcfg' command.\r
48\r
49 @param[in] ImageHandle Handle to the Image (NULL if Internal).\r
50 @param[in] SystemTable Pointer to the System Table (NULL if Internal).\r
51**/\r
52SHELL_STATUS\r
53EFIAPI\r
54ShellCommandRunBcfgInstall (\r
55 IN EFI_HANDLE ImageHandle,\r
56 IN EFI_SYSTEM_TABLE *SystemTable\r
57 );\r
58\r
2398d9b1 59#endif\r
60\r