X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9576ca53db96b462ed4c0b4bdf47d64c40203e4..cd5e9298159e58f57e05f3b76c9d4a45e1eefe12:/src/mac/utilsexc.cpp diff --git a/src/mac/utilsexc.cpp b/src/mac/utilsexc.cpp index b842d08e90..c97c35e443 100644 --- a/src/mac/utilsexc.cpp +++ b/src/mac/utilsexc.cpp @@ -14,15 +14,28 @@ #endif #include "wx/utils.h" +#ifdef __DARWIN__ +#include "wx/unix/execute.h" +#endif #include #include #include +#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 return 0; } +#endif + +#ifdef __DARWIN__ +int wxAddProcessCallback(wxEndProcessData *proc_data, int fd) +{ + wxFAIL_MSG(wxT("wxAddProcessCallback() function not ready")); + return 0; +} +#endif