// Author: David Webster
// Modified by:
// Created: 10/17/99
-// RCS-ID: $Id$
// Copyright: (c) David Webster
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
long wxExecute( const wxString& rCommand,
int flags,
- wxProcess* pHandler)
+ wxProcess* pHandler,
+ const wxExecuteEnv *env)
{
if (rCommand.empty())
{
char** ppArgv
, int flags
, wxProcess* pHandler
+, const wxExecuteEnv *env
)
{
wxString sCommand;
return wxExecute( sCommand
,flags
,pHandler
+ , env
);
}