• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2   Main file for NULL named library for dp command functions.
3 
4   Copyright (c) 2010 - 2013, 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 #ifndef _UEFI_DP_LIB_H_
16 #define _UEFI_DP_LIB_H_
17 
18 #include <Uefi.h>
19 #include <ShellBase.h>
20 
21 extern EFI_GUID gDpHiiGuid;
22 
23 #include <Protocol/EfiShell.h>
24 #include <Protocol/EfiShellParameters.h>
25 #include <Protocol/DevicePath.h>
26 #include <Protocol/LoadedImage.h>
27 #include <Protocol/UnicodeCollation.h>
28 
29 #include <Library/BaseLib.h>
30 #include <Library/BaseMemoryLib.h>
31 #include <Library/DebugLib.h>
32 #include <Library/MemoryAllocationLib.h>
33 #include <Library/PcdLib.h>
34 #include <Library/ShellCommandLib.h>
35 #include <Library/ShellLib.h>
36 #include <Library/SortLib.h>
37 #include <Library/UefiLib.h>
38 #include <Library/UefiRuntimeServicesTableLib.h>
39 #include <Library/UefiBootServicesTableLib.h>
40 #include <Library/HiiLib.h>
41 #include <Library/FileHandleLib.h>
42 
43 extern        EFI_HANDLE                        gDpHiiHandle;
44 
45 /**
46   Function for 'dp' command.
47 
48   @param[in] ImageHandle  Handle to the Image (NULL if Internal).
49   @param[in] SystemTable  Pointer to the System Table (NULL if Internal).
50 **/
51 SHELL_STATUS
52 EFIAPI
53 ShellCommandRunDp (
54   IN EFI_HANDLE        ImageHandle,
55   IN EFI_SYSTEM_TABLE  *SystemTable
56   );
57 
58 #endif
59 
60