summaryrefslogtreecommitdiff
path: root/ace/Process.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-06 23:33:36 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-06 23:33:36 +0000
commit2ea52eb1e79b88cdfa12f2531746397df4b73a03 (patch)
treeba9afe0127e67c3bae328971fbcce313ab8aa591 /ace/Process.h
parent44938fd314f2e4c2725d9f86174a82f8c221a0a3 (diff)
downloadATCD-2ea52eb1e79b88cdfa12f2531746397df4b73a03.tar.gz
foo
Diffstat (limited to 'ace/Process.h')
-rw-r--r--ace/Process.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Process.h b/ace/Process.h
index 4cddc1289f5..a83356b9c7e 100644
--- a/ace/Process.h
+++ b/ace/Process.h
@@ -42,7 +42,8 @@ public:
ACE_Process (char *argv[],
ACE_HANDLE std_in,
ACE_HANDLE std_out = ACE_INVALID_HANDLE,
- ACE_HANDLE std_err = ACE_INVALID_HANDLE);
+ ACE_HANDLE std_err = ACE_INVALID_HANDLE,
+ char *envp[] = 0);
// Set the standard handles of the new process to the respective
// handles and start the new process. <argv> must be specified. It
// should be of the following form: argv = {
@@ -65,7 +66,7 @@ public:
int set_cwd (const TCHAR *cwd);
// Set the working directory for the process.
- int start (char *argv[], char *envp[]);
+ int start (char *argv[], char *envp[] = 0);
// Start the new process. <argv> must be specified. It should be
// of the following form: argv = { "c:\full\path\to\foo.exe", "-a",
// "arg1", "etc", 0 }. If <envp> is specified, it is passed as the