]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - EmbeddedPkg/Include/Library/EblCmdLib.h
IntelFrameworkModulePkg: Fix MSFT C4255 warning
[mirror_edk2.git] / EmbeddedPkg / Include / Library / EblCmdLib.h
... / ...
CommitLineData
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 (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>\r
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
26EFIAPI\r
27EblAddCommand (\r
28 IN const EBL_COMMAND_TABLE *Entry\r
29 );\r
30\r
31VOID\r
32EFIAPI\r
33EblAddCommands (\r
34 IN const EBL_COMMAND_TABLE *EntryArray,\r
35 IN UINTN ArrayCount\r
36 );\r
37\r
38\r
39//\r
40// LIbrary constructor called directly from Ebl Code.\r
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