#include "wx/utils.h"
#include "wx/app.h"
#include "wx/intl.h"
+ #include "wx/log.h"
#endif
-#include "wx/log.h"
-
#include "wx/process.h"
#include "wx/os2/private.h"
long wxExecute( const wxString& rCommand,
int flags,
- wxProcess* pHandler)
+ wxProcess* pHandler,
+ const wxExecuteEnv *env)
{
if (rCommand.empty())
{
,zArgs
,zEnvs
,&vResultCodes
- ,(PSZ)rCommand.c_str()
+ ,rCommand.c_str()
);
if (rc != NO_ERROR)
{
char** ppArgv
, int flags
, wxProcess* pHandler
+, const wxExecuteEnv *env
)
{
wxString sCommand;
return wxExecute( sCommand
,flags
,pHandler
+ , env
);
}