]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsexc.cpp
cw makefile for minimal - to be used as template
[wxWidgets.git] / src / msw / utilsexc.cpp
index 6ff8518ec4dc0891f8b464c81b84d8a3694f0333..aae349314dc22cf48e2d3c28f0b527491fee3c7e 100644 (file)
@@ -26,6 +26,7 @@
 #include "wx/app.h"
 #endif
 
+#include "wx/log.h"
 #include "wx/msw/private.h"
 #include <windows.h>
 
 #ifdef __GNUWIN32__
 #include <sys/unistd.h>
 #include <sys/stat.h>
-#ifndef __MINGW32__
-#include <std.h>
-#endif
-
 #endif
 
 #ifdef __WIN32__
@@ -144,6 +141,8 @@ long wxExecute(const wxString& command, bool sync, wxProcess *handler)
 
   if (((long)result) <= 32) {
    free(cl);
+
+   wxLogSysError(_("Can't execute command '%s'"), command.c_str());
    return 0;
   }
 
@@ -200,3 +199,16 @@ long wxExecute(const wxString& command, bool sync, wxProcess *handler)
   return(instanceID);
 #endif
 }
+
+long wxExecute(char **argv, bool sync, wxProcess *handler)
+{
+  wxString command = "";
+
+  while (*argv != NULL) {
+    command += *argv;
+    command += ' ';
+    argv++;
+  }
+  command.RemoveLast();
+  return wxExecute(command, sync, handler);
+}