diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-03-13 18:24:35 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-03-13 18:24:35 +0000 |
commit | c3e1a75d4769aba44d213724dedf1bcd508516e8 (patch) | |
tree | 820fdeec65e2225c8787d9b17f6bc9b09b8c6f59 /examples | |
parent | e9918ac333cd0aa2b2e0ece2f68d979ea9f72728 (diff) | |
download | ATCD-c3e1a75d4769aba44d213724dedf1bcd508516e8.tar.gz |
ChangeLogTag: Sat Mar 13 18:24:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/OS/Process/process.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/OS/Process/process.cpp b/examples/OS/Process/process.cpp index ae7769d64a1..8021568c2e6 100644 --- a/examples/OS/Process/process.cpp +++ b/examples/OS/Process/process.cpp @@ -286,7 +286,7 @@ win32_test_ls (void) std_out, ::GetCurrentProcess (), &startup_info.hStdOutput, - NULL, + 0, TRUE, DUPLICATE_SAME_ACCESS)) { @@ -302,7 +302,7 @@ win32_test_ls (void) NULL, // No process attributes. NULL, // No thread attributes. TRUE, // Allow handle inheritance. - NULL, // CREATE_NEW_CONSOLE, // Create a new console window. + 0, // CREATE_NEW_CONSOLE, // Create a new console window. NULL, 0, // Current directory to start in. &startup_info, @@ -350,7 +350,7 @@ win32_spawn_environment_process (void) std_out, ::GetCurrentProcess(), &startup_info.hStdOutput, - NULL, + 0, TRUE, DUPLICATE_SAME_ACCESS)) { @@ -363,7 +363,7 @@ win32_spawn_environment_process (void) std_err, ::GetCurrentProcess(), &startup_info.hStdError, - NULL, + 0, TRUE, DUPLICATE_SAME_ACCESS)) { @@ -377,7 +377,7 @@ win32_spawn_environment_process (void) std_in, ::GetCurrentProcess(), &startup_info.hStdInput, - NULL, + 0, TRUE, DUPLICATE_SAME_ACCESS)) { @@ -411,7 +411,7 @@ win32_spawn_environment_process (void) NULL, // No process attributes. NULL, // No thread attributes. TRUE, // Allow handle inheritance. - NULL, // CREATE_NEW_CONSOLE, // Create a new console window. + 0, // CREATE_NEW_CONSOLE, // Create a new console window. environment, // Environment. //"d:\\harrison\\ACE_wrappers\\examples\\OS\\Process\\", 0, @@ -429,7 +429,7 @@ win32_spawn_environment_process (void) { ::WaitForSingleObject (process_info.hProcess, INFINITE); - ACE_DEBUG ((LM_ERROR, + ACE_DEBUG ((LM_ERROR, "spawn_environment_process succeeded.\n")); } } |