]> git.proxmox.com Git - mirror_edk2.git/blame - EmbeddedPkg/Include/Library/EblCmdLib.h
ARM Packages: Removed trailing spaces
[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
6\r
7 This program and the accompanying materials\r
8 are licensed and made available under the terms and conditions of the BSD License\r
9 which accompanies this distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11\r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
16\r
17#ifndef __EBL_LIB_H__\r
18#define __EBL_LIB_H__\r
19\r
20#include <PiDxe.h>\r
21#include <Protocol/EblAddCommand.h>\r
22\r
23\r
24VOID\r
25EblAddCommand (\r
26 IN const EBL_COMMAND_TABLE *Entry\r
27 );\r
28\r
29VOID\r
30EblAddCommands (\r
31 IN const EBL_COMMAND_TABLE *EntryArray,\r
32 IN UINTN ArrayCount\r
33 );\r
34\r
35\r
36//\r
3402aac7 37// LIbrary constructor called directly from Ebl Code.\r
1e57a462 38// This module calls EblAddCommand () or EblAddCommands () to register new commands\r
39//\r
40VOID\r
41EblInitializeExternalCmd (\r
42 VOID\r
43 );\r
44\r
45\r
46\r
47#endif\r
48\r