taskkill: Use OEM code page for output.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
18f9d2dd9d
commit
8fdf397505
|
@ -42,30 +42,27 @@ struct pid_close_info
|
||||||
static int taskkill_vprintfW(const WCHAR *msg, va_list va_args)
|
static int taskkill_vprintfW(const WCHAR *msg, va_list va_args)
|
||||||
{
|
{
|
||||||
int wlen;
|
int wlen;
|
||||||
DWORD count, ret;
|
DWORD count;
|
||||||
WCHAR msg_buffer[8192];
|
WCHAR msg_buffer[8192];
|
||||||
|
|
||||||
wlen = FormatMessageW(FORMAT_MESSAGE_FROM_STRING, msg, 0, 0, msg_buffer,
|
wlen = FormatMessageW(FORMAT_MESSAGE_FROM_STRING, msg, 0, 0, msg_buffer,
|
||||||
ARRAY_SIZE(msg_buffer), &va_args);
|
ARRAY_SIZE(msg_buffer), &va_args);
|
||||||
|
|
||||||
ret = WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), msg_buffer, wlen, &count, NULL);
|
if (!WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), msg_buffer, wlen, &count, NULL))
|
||||||
if (!ret)
|
|
||||||
{
|
{
|
||||||
DWORD len;
|
DWORD len;
|
||||||
char *msgA;
|
char *msgA;
|
||||||
|
|
||||||
/* On Windows WriteConsoleW() fails if the output is redirected. So fall
|
/* On Windows WriteConsoleW() fails if the output is redirected. So fall
|
||||||
* back to WriteFile(), assuming the console encoding is still the right
|
* back to WriteFile() using OEM code page.
|
||||||
* one in that case.
|
|
||||||
*/
|
*/
|
||||||
len = WideCharToMultiByte(GetConsoleOutputCP(), 0, msg_buffer, wlen,
|
len = WideCharToMultiByte(GetOEMCP(), 0, msg_buffer, wlen,
|
||||||
NULL, 0, NULL, NULL);
|
NULL, 0, NULL, NULL);
|
||||||
msgA = HeapAlloc(GetProcessHeap(), 0, len);
|
msgA = HeapAlloc(GetProcessHeap(), 0, len);
|
||||||
if (!msgA)
|
if (!msgA)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
WideCharToMultiByte(GetConsoleOutputCP(), 0, msg_buffer, wlen, msgA, len,
|
WideCharToMultiByte(GetOEMCP(), 0, msg_buffer, wlen, msgA, len, NULL, NULL);
|
||||||
NULL, NULL);
|
|
||||||
WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), msgA, len, &count, FALSE);
|
WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), msgA, len, &count, FALSE);
|
||||||
HeapFree(GetProcessHeap(), 0, msgA);
|
HeapFree(GetProcessHeap(), 0, msgA);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue