X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9576ca53db96b462ed4c0b4bdf47d64c40203e4..2fe212b0336512aac9eace69fab09ce856b0bf4b:/src/mac/utilsexc.cpp?ds=sidebyside diff --git a/src/mac/utilsexc.cpp b/src/mac/utilsexc.cpp index b842d08e90..3b4903212c 100644 --- a/src/mac/utilsexc.cpp +++ b/src/mac/utilsexc.cpp @@ -14,11 +14,15 @@ #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) @@ -26,3 +30,12 @@ long wxExecute(const wxString& command, bool sync, 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