X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=AppPkg%2FApplications%2FSockets%2FOobRx%2FWindows%2Fmain.c;fp=AppPkg%2FApplications%2FSockets%2FOobRx%2FWindows%2Fmain.c;h=0000000000000000000000000000000000000000;hp=9aa89b5f04d858af108bf0655877cd623cf20349;hb=964f432b9b0afe103c41c7613fade3e699118afe;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb diff --git a/AppPkg/Applications/Sockets/OobRx/Windows/main.c b/AppPkg/Applications/Sockets/OobRx/Windows/main.c deleted file mode 100644 index 9aa89b5f04..0000000000 --- a/AppPkg/Applications/Sockets/OobRx/Windows/main.c +++ /dev/null @@ -1,50 +0,0 @@ -/** @file - Windows version of the OOB Receive application - - Copyright (c) 2011-2012, Intel Corporation. All rights reserved. - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#include - - -/** - Receive out-of-band messages from the remote system. - - @param [in] argc The number of arguments - @param [in] argv The argument value array - - @retval 0 The application exited normally. - @retval Other An error occurred. -**/ -int -main( - int argc, - char ** argv - ) -{ - int RetVal; - WSADATA WsaData; - - // - // Initialize the WinSock layer - // - RetVal = WSAStartup ( MAKEWORD ( 2, 2 ), &WsaData ); - if ( 0 == RetVal ) { - // - // Start the application - // - RetVal = OobRx ( argc, argv ); - - // - // Done with the WinSock layer - // - WSACleanup ( ); - } - - // - // Return the final result - // - return RetVal; -}