]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.h
udk2010.up2.shell initial release.
[mirror_edk2.git] / ShellPkg / Library / UefiShellDriver1CommandsLib / UefiShellDriver1CommandsLib.h
1 /** @file
2 Main file for NULL named library for Profile1 shell command functions.
3
4 Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include <Uefi.h>
16 #include <ShellBase.h>
17
18 #include <Protocol/EfiShell.h>
19 #include <Protocol/EfiShellParameters.h>
20 #include <Protocol/DevicePath.h>
21 #include <Protocol/LoadedImage.h>
22 #include <Protocol/UnicodeCollation.h>
23 #include <Protocol/DevicePathToText.h>
24
25 #include <Library/BaseLib.h>
26 #include <Library/BaseMemoryLib.h>
27 #include <Library/DebugLib.h>
28 #include <Library/MemoryAllocationLib.h>
29 #include <Library/PcdLib.h>
30 #include <Library/ShellCommandLib.h>
31 #include <Library/ShellLib.h>
32 #include <Library/SortLib.h>
33 #include <Library/UefiLib.h>
34 #include <Library/UefiRuntimeServicesTableLib.h>
35 #include <Library/UefiBootServicesTableLib.h>
36 #include <Library/HiiLib.h>
37 #include <Library/FileHandleLib.h>
38 #include <Library/DevicePathLib.h>
39 #include <Library/PrintLib.h>
40
41
42 extern EFI_HANDLE gShellDriver1HiiHandle;
43 extern CONST EFI_GUID gShellDriver1HiiGuid;
44
45 EFI_HANDLE*
46 EFIAPI
47 GetHandleListByPotocol (
48 IN CONST EFI_GUID *ProtocolGuid
49 );
50
51 SHELL_STATUS
52 EFIAPI
53 ShellCommandRunConnect (
54 VOID *RESERVED
55 );
56
57 SHELL_STATUS
58 EFIAPI
59 ShellCommandRunDevices (
60 VOID *RESERVED
61 );
62
63 SHELL_STATUS
64 EFIAPI
65 ShellCommandRunOpenInfo (
66 VOID *RESERVED
67 );
68
69
70
71