}
/* static */
-wxProcess *wxProcess::Open(const wxString& cmd)
+wxProcess *wxProcess::Open(const wxString& cmd, int flags)
{
+ wxASSERT_MSG( !(flags & wxEXEC_SYNC), wxT("wxEXEC_SYNC should not be used." ));
wxProcess *process = new wxProcess(wxPROCESS_REDIRECT);
- if ( !wxExecute(cmd, wxEXEC_ASYNC, process) )
+ if ( !wxExecute(cmd, flags, process) )
{
// couldn't launch the process
delete process;