]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/utilsexc.cpp
Added effects.h to filelist.txt so it will get installed, fixed a
[wxWidgets.git] / src / mac / carbon / utilsexc.cpp
index 624a9c05249a3061ccc3d7828dbfcaec8461f65a..d6553a7531900effcefe029fcb4c832c2c7e6a02 100644 (file)
@@ -14,7 +14,7 @@
 #endif
 
 #include "wx/utils.h"
-#ifdef __UNIX__
+#ifdef __DARWIN__
 #include "wx/unix/execute.h"
 #endif
 
 #include <stdlib.h>
 #include <string.h>
 
-#ifndef __UNIX__
+#ifndef __DARWIN__
 #define wxEXECUTE_WIN_MESSAGE 10000
 
-long wxExecute(const wxString& command, bool sync, wxProcess *handler)
+long wxExecute(const wxString& command, int flags, wxProcess *handler)
 {
     // TODO
+    wxFAIL_MSG( _T("wxExecute() not yet implemented") );
     return 0;
 }
 #endif
 
-#ifdef __UNIX__
+#ifdef __DARWIN__
 int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
 {
-   wxFAIL_MSG(wxT("wxAddProcessCallback() function not ready"));
+   wxFAIL_MSG( _T("wxAddProcessCallback() not yet implemented") );
    return 0;
 }
-#endif
\ No newline at end of file
+#endif