Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
deaa366e
Commit
deaa366e
authored
Mar 05, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Forward the wShowWindow option from winedbg to the debuggee.
parent
e374bcff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
tgt_active.c
programs/winedbg/tgt_active.c
+6
-2
No files found.
programs/winedbg/tgt_active.c
View file @
deaa366e
...
...
@@ -703,13 +703,17 @@ void dbg_active_wait_for_first_exception(void)
static
unsigned
dbg_start_debuggee
(
LPSTR
cmdLine
)
{
PROCESS_INFORMATION
info
;
STARTUPINFOA
startup
;
STARTUPINFOA
startup
,
current
;
DWORD
flags
;
GetStartupInfoA
(
&
current
);
memset
(
&
startup
,
0
,
sizeof
(
startup
));
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
wShowWindow
=
(
current
.
dwFlags
&
STARTF_USESHOWWINDOW
)
?
current
.
wShowWindow
:
SW_SHOWNORMAL
;
/* FIXME: shouldn't need the CREATE_NEW_CONSOLE, but as usual CUI:s need it
* while GUI:s don't
...
...
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