]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Sockets/OobTx/Main.c
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Sockets / OobTx / Main.c
CommitLineData
59bc0593 1/** @file\r
2 Out-of-band transmit test application\r
3\r
bcb96695
MK
4 Copyright (c) 2011-2012, Intel Corporation. All rights reserved.\r
5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
59bc0593 6\r
7**/\r
8\r
9#include <OobTx.h>\r
10\r
11\r
12/**\r
13 Transmit out-of-band messages to the remote system.\r
14\r
15 @param [in] Argc The number of arguments\r
16 @param [in] Argv The argument value array\r
17\r
18 @retval 0 The application exited normally.\r
19 @retval Other An error occurred.\r
20**/\r
21int\r
22main (\r
23 IN int Argc,\r
24 IN char **Argv\r
25 )\r
26{\r
27 int RetVal;\r
28\r
29 //\r
30 // Run the application\r
31 //\r
32 RetVal = OobTx ( Argc, Argv );\r
33\r
34 //\r
35 // Return the operation status\r
36 //\r
37 return RetVal;\r
38}\r