X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9576ca53db96b462ed4c0b4bdf47d64c40203e4..867e99f57d01aaf89e5b470a2db97c95a0ac621f:/src/mac/carbon/utilsexc.cpp?ds=sidebyside diff --git a/src/mac/carbon/utilsexc.cpp b/src/mac/carbon/utilsexc.cpp index b842d08e90..d6553a7531 100644 --- a/src/mac/carbon/utilsexc.cpp +++ b/src/mac/carbon/utilsexc.cpp @@ -14,15 +14,29 @@ #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 + wxFAIL_MSG( _T("wxExecute() not yet implemented") ); return 0; } +#endif + +#ifdef __DARWIN__ +int wxAddProcessCallback(wxEndProcessData *proc_data, int fd) +{ + wxFAIL_MSG( _T("wxAddProcessCallback() not yet implemented") ); + return 0; +} +#endif