mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
- Fix gdb2 and regexpl warnings under gcc 4.4.0
svn path=/trunk/; revision=42968
This commit is contained in:
parent
a8d673a487
commit
a557cda82c
8 changed files with 16 additions and 12 deletions
|
@ -177,6 +177,7 @@ void PrepAndLaunchRedirectedChild(HANDLE hChildStdOut,
|
|||
{
|
||||
PROCESS_INFORMATION pi;
|
||||
STARTUPINFO si;
|
||||
static CHAR Title[] = "debugged program console";
|
||||
|
||||
// Set up the start up info struct.
|
||||
ZeroMemory(&si,sizeof(STARTUPINFO));
|
||||
|
@ -185,7 +186,7 @@ void PrepAndLaunchRedirectedChild(HANDLE hChildStdOut,
|
|||
si.hStdOutput = hChildStdOut;
|
||||
si.hStdInput = hChildStdIn;
|
||||
si.hStdError = hChildStdErr;
|
||||
si.lpTitle = "debugged program console";
|
||||
si.lpTitle = Title;
|
||||
// Use this if you want to hide the child:
|
||||
// si.wShowWindow = SW_HIDE;
|
||||
// Note that dwFlags must include STARTF_USESHOWWINDOW if you want to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue