projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Translated a double click into just a second click for Scintilla
[wxWidgets.git]
/
src
/
mac
/
carbon
/
utilsexc.cpp
diff --git
a/src/mac/carbon/utilsexc.cpp
b/src/mac/carbon/utilsexc.cpp
index b842d08e90f5d6c57449dea938df4c6a321f68c0..624a9c05249a3061ccc3d7828dbfcaec8461f65a 100644
(file)
--- a/
src/mac/carbon/utilsexc.cpp
+++ b/
src/mac/carbon/utilsexc.cpp
@@
-14,11
+14,15
@@
#endif
#include "wx/utils.h"
#endif
#include "wx/utils.h"
+#ifdef __UNIX__
+#include "wx/unix/execute.h"
+#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#ifndef __UNIX__
#define wxEXECUTE_WIN_MESSAGE 10000
long wxExecute(const wxString& command, bool sync, wxProcess *handler)
#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;
}
// TODO
return 0;
}
+#endif
+
+#ifdef __UNIX__
+int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
+{
+ wxFAIL_MSG(wxT("wxAddProcessCallback() function not ready"));
+ return 0;
+}
+#endif
\ No newline at end of file