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
commit9c7e892a243cbe53e64edc1884f41ebd87677cf0 (patch)
treeba9afe0127e67c3bae328971fbcce313ab8aa591 /ace/Process.h
parentd63be4c7e06a2e4c335fdd433d8877e7dfef3265 (diff)
downloadATCD-9c7e892a243cbe53e64edc1884f41ebd87677cf0.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