Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ac94d889
Commit
ac94d889
authored
Aug 13, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Set PEB ConsoleHandle for bare console.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
09ff2436
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
console.c
dlls/kernel32/console.c
+4
-4
No files found.
dlls/kernel32/console.c
View file @
ac94d889
...
...
@@ -176,9 +176,7 @@ static BOOL restore_console_mode(HANDLE hin)
close
(
fd
);
}
if
(
RtlGetCurrentPeb
()
->
ProcessParameters
->
ConsoleHandle
==
KERNEL32_CONSOLE_SHELL
)
TERM_Exit
();
TERM_Exit
();
return
ret
;
}
...
...
@@ -1109,7 +1107,7 @@ BOOL CONSOLE_Init(RTL_USER_PROCESS_PARAMETERS *params)
memset
(
&
S_termios
,
0
,
sizeof
(
S_termios
));
if
(
params
->
ConsoleHandle
==
KERNEL32_CONSOLE_SHELL
)
{
HANDLE
conin
;
HANDLE
conin
,
console
;
/* FIXME: to be done even if program is a GUI ? */
/* This is wine specific: we have no parent (we're started from unix)
...
...
@@ -1162,6 +1160,8 @@ BOOL CONSOLE_Init(RTL_USER_PROCESS_PARAMETERS *params)
}
SERVER_END_REQ
;
}
console
=
CreateFileW
(
coninW
,
GENERIC_READ
|
GENERIC_WRITE
|
SYNCHRONIZE
,
0
,
NULL
,
OPEN_EXISTING
,
0
,
0
);
if
(
console
!=
INVALID_HANDLE_VALUE
)
params
->
ConsoleHandle
=
console
;
}
/* convert value from server:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment