4 Dec
2023
4 Dec
'23
12:35 p.m.
Jacek Caban (@jacek) commented about dlls/ntdll/unix/env.c:
}
+/* helper for create_startup_info */ +static BOOL is_console_handle( HANDLE handle ) +{ + IO_STATUS_BLOCK io; + DWORD mode; + + return NtDeviceIoControlFile( handle, NULL, NULL, NULL, &io, IOCTL_CONDRV_GET_MODE, NULL, 0, + &mode, sizeof(mode) ) == STATUS_SUCCESS; Wrong indentation.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4573#note_54845