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 25 VOID 26 EFIAPI 27 EblAddCommand ( 28 IN const EBL_COMMAND_TABLE *Entry 29 ); 30 31 VOID 32 EFIAPI 33 EblAddCommands ( 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 // 43 VOID 44 EblInitializeExternalCmd ( 45 VOID 46 ); 47 48 49 50 #endif 51 52