]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Sockets/OobTx/Windows/main.c
Update the sockets applications
[mirror_edk2.git] / AppPkg / Applications / Sockets / OobTx / Windows / main.c
diff --git a/AppPkg/Applications/Sockets/OobTx/Windows/main.c b/AppPkg/Applications/Sockets/OobTx/Windows/main.c
new file mode 100644 (file)
index 0000000..cf149c4
--- /dev/null
@@ -0,0 +1,56 @@
+/** @file\r
+  Windows version of the OOB Transmit application\r
+\r
+  Copyright (c) 2011, Intel Corporation\r
+  All rights reserved. This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+#include <OobTx.h>\r
+\r
+\r
+/**\r
+  Transmit out-of-band messages to the remote system.\r
+\r
+  @param [in] Argc  The number of arguments\r
+  @param [in] Argv  The argument value array\r
+\r
+  @retval  0        The application exited normally.\r
+  @retval  Other    An error occurred.\r
+**/\r
+int\r
+main(\r
+  int argc,\r
+  char ** argv\r
+  )\r
+{\r
+  int RetVal;\r
+  WSADATA WsaData;\r
+\r
+  //\r
+  //  Initialize the WinSock layer\r
+  //\r
+  RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData );\r
+  if ( 0 == RetVal ) {\r
+    //\r
+    //  Start the application\r
+    //\r
+    RetVal = OobTx ( argc, argv );\r
+\r
+    //\r
+    //  Done with the WinSock layer\r
+    //\r
+    WSACleanup ( );\r
+  }\r
+\r
+  //\r
+  //  Return the final result\r
+  //\r
+  return RetVal;  \r
+}\r