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