hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/** @file
*
*  Definitions for the Dynamic Shell command library
*
*  Copyright (C) 2014, ARM Ltd
*
*  SPDX-License-Identifier: BSD-2-Clause-Patent
*
**/
 
#ifndef _ARM_SHELL_CMD_LIB_H_
#define _ARM_SHELL_CMD_LIB_H_
 
/**
 
  Initialize and Install EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL for RunAxf command.
 
  @param[in] ImageHandle        Handle the protocol should be attached to.
 
  @retval EFI_SUCCESS           The command has been installed successfully.
 
  @retval EFI_UNSUPPORTED       Help for the command failed to initialise.
 
  @return                       Status code returned by InstallProtocolInterface
                                Boot Service function.
 
**/
EFI_STATUS
ShellDynCmdRunAxfInstall (
  IN EFI_HANDLE             ImageHandle
  );
 
/**
 
  Uninstall the RunAxf Command
 
  @param[in] ImageHandle  Handle of the device where the protocol should have
                          been installed.
 
  @retval EFI_SUCCESS     The device has been un-initialized successfully.
 
  @return                 Status code returned by UninstallProtocolInterface
                          Boot Service function.
 
**/
EFI_STATUS
ShellDynCmdRunAxfUninstall (
  IN EFI_HANDLE             ImageHandle
  );
 
#endif // _ARM_SHELL_CMD_LIB_H_