]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.h
ShellPkg: Fix typo of 'determines' in ShellPkg.
[mirror_edk2.git] / ShellPkg / Library / UefiShellNetwork1CommandsLib / UefiShellNetwork1CommandsLib.h
CommitLineData
68fb0527 1/** @file\r
2 header file for NULL named library for network1 shell command functions.\r
3\r
4 Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved. <BR>\r
5\r
6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
a1d4bfcc 16#ifndef _UEFI_SHELL_NETWORK1_COMMANDS_LIB_H_\r
68fb0527 17#define _UEFI_SHELL_NETWORK1_COMMANDS_LIB_H_\r
18\r
19#include <Uefi.h>\r
20#include <ShellBase.h>\r
21\r
bca163ff
LG
22#include <Guid/ShellLibHiiGuid.h>\r
23\r
68fb0527 24#include <Protocol/Cpu.h>\r
25#include <Protocol/ServiceBinding.h>\r
26#include <Protocol/Ip6.h>\r
27#include <Protocol/Ip6Config.h>\r
28#include <Protocol/Ip4.h>\r
29#include <Protocol/Ip4Config.h>\r
30#include <Protocol/HiiConfigAccess.h>\r
31#include <Protocol/HiiConfigRouting.h>\r
32#include <Protocol/Arp.h>\r
33\r
34#include <Library/BaseLib.h>\r
35#include <Library/BaseMemoryLib.h>\r
36#include <Library/DebugLib.h>\r
37#include <Library/MemoryAllocationLib.h>\r
38#include <Library/PcdLib.h>\r
39#include <Library/ShellCommandLib.h>\r
40#include <Library/ShellLib.h>\r
41#include <Library/SortLib.h>\r
42#include <Library/UefiLib.h>\r
43#include <Library/UefiRuntimeServicesTableLib.h>\r
44#include <Library/UefiBootServicesTableLib.h>\r
45#include <Library/HiiLib.h>\r
46#include <Library/NetLib.h>\r
47#include <Library/DevicePathLib.h>\r
48#include <Library/PrintLib.h>\r
49\r
50#include <Guid/NicIp4ConfigNvData.h>\r
51\r
52extern EFI_HANDLE gShellNetwork1HiiHandle;\r
53\r
54/**\r
55 Function for 'ping' command.\r
56\r
57 @param[in] ImageHandle Handle to the Image (NULL if Internal).\r
58 @param[in] SystemTable Pointer to the System Table (NULL if Internal).\r
59**/\r
60SHELL_STATUS\r
61EFIAPI\r
62ShellCommandRunPing (\r
63 IN EFI_HANDLE ImageHandle,\r
64 IN EFI_SYSTEM_TABLE *SystemTable\r
65 );\r
66\r
67/**\r
68 Function for 'ifconfig' command.\r
69\r
70 @param[in] ImageHandle Handle to the Image (NULL if Internal).\r
71 @param[in] SystemTable Pointer to the System Table (NULL if Internal).\r
72**/\r
73SHELL_STATUS\r
74EFIAPI\r
75ShellCommandRunIfconfig (\r
76 IN EFI_HANDLE ImageHandle,\r
77 IN EFI_SYSTEM_TABLE *SystemTable\r
78 );\r
79\r
80#endif\r
81\r