]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Sockets/OobRx/Windows/main.c
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Sockets / OobRx / Windows / main.c
diff --git a/AppPkg/Applications/Sockets/OobRx/Windows/main.c b/AppPkg/Applications/Sockets/OobRx/Windows/main.c
deleted file mode 100644 (file)
index 9aa89b5..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/** @file\r
-  Windows version of the OOB Receive application\r
-\r
-  Copyright (c) 2011-2012, Intel Corporation. All rights reserved.\r
-  SPDX-License-Identifier: BSD-2-Clause-Patent\r
-\r
-**/\r
-\r
-#include <OobRx.h>\r
-\r
-\r
-/**\r
-  Receive out-of-band messages from 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 = OobRx ( 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