wine/programs/wineconsole/wineconsole.c
Eric Pouech 0eaebfe5c7 wineconsole: Create child with unbound console handles.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=10941
Signed-off-by: Eric Pouech <epouech@codeweavers.com>
2025-05-26 09:20:09 +02:00

90 lines
2.8 KiB
C

/*
* an application for displaying Win32 console
*
* Copyright 2001, 2002 Eric Pouech
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "wincon.h"
#include "winternl.h"
#include "wineconsole_res.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(console);
static BOOL setup_target_console(void)
{
if (!FreeConsole()) return FALSE;
/* Zero out std handles so that AllocConsole() sets the newly allocated handles as std,
* and will be inherited by child process.
*/
SetStdHandle(STD_INPUT_HANDLE, NULL);
SetStdHandle(STD_OUTPUT_HANDLE, NULL);
SetStdHandle(STD_ERROR_HANDLE, NULL);
return AllocConsole();
}
int WINAPI wWinMain( HINSTANCE inst, HINSTANCE prev, WCHAR *cmdline, INT show )
{
STARTUPINFOW startup = { sizeof(startup) };
PROCESS_INFORMATION info;
WCHAR *cmd = cmdline;
DWORD exit_code;
static WCHAR default_cmd[] = L"cmd";
if (!*cmd) cmd = default_cmd;
if (!setup_target_console())
{
ERR( "failed to allocate console: %lu\n", GetLastError() );
return 1;
}
if (!CreateProcessW( NULL, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &startup, &info ))
{
WCHAR format[256], *buf;
INPUT_RECORD ir;
DWORD len;
exit_code = GetLastError();
WARN( "CreateProcess '%ls' failed: %lu\n", cmd, exit_code );
LoadStringW( GetModuleHandleW( NULL ), IDS_CMD_LAUNCH_FAILED, format, ARRAY_SIZE(format) );
len = wcslen( format ) + wcslen( cmd );
if ((buf = malloc( len * sizeof(WCHAR) )))
{
swprintf( buf, len, format, cmd );
WriteConsoleW( startup.hStdOutput, buf, wcslen(buf), &len, NULL);
while (ReadConsoleInputW( startup.hStdInput, &ir, 1, &len ) && ir.EventType == MOUSE_EVENT);
}
return exit_code;
}
/* detach from created console */
FreeConsole();
CloseHandle( info.hThread );
WaitForSingleObject( info.hProcess, INFINITE );
return GetExitCodeProcess( info.hProcess, &exit_code ) ? exit_code : GetLastError();
}