]> git.proxmox.com Git - mirror_edk2.git/blame - EmbeddedPkg/Include/Library/EblCmdLib.h
ArmPlatformPkg: remove EblCmdLib implementation
[mirror_edk2.git] / EmbeddedPkg / Include / Library / EblCmdLib.h
CommitLineData
1e57a462 1/** @file\r
2 Include file for basic command line parser for EBL (Embedded Boot Loader)\r
3\r
4 Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>\r
5 Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
50c6a4d2 6 (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>\r
1e57a462 7\r
8 This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#ifndef __EBL_LIB_H__\r
19#define __EBL_LIB_H__\r
20\r
21#include <PiDxe.h>\r
22#include <Protocol/EblAddCommand.h>\r
23\r
24\r
25VOID\r
50c6a4d2 26EFIAPI\r
1e57a462 27EblAddCommand (\r
28 IN const EBL_COMMAND_TABLE *Entry\r
29 );\r
30\r
31VOID\r
50c6a4d2 32EFIAPI\r
1e57a462 33EblAddCommands (\r
34 IN const EBL_COMMAND_TABLE *EntryArray,\r
35 IN UINTN ArrayCount\r
36 );\r
37\r
38\r
39//\r
3402aac7 40// LIbrary constructor called directly from Ebl Code.\r
1e57a462 41// This module calls EblAddCommand () or EblAddCommands () to register new commands\r
42//\r
43VOID\r
44EblInitializeExternalCmd (\r
45 VOID\r
46 );\r
47\r
48\r
49\r
50#endif\r
51\r