#include <wx/gtk/win_gtk.h>
#endif
+#ifdef __WXMAC__
+#include <wx/mac/private.h>
+#endif
+
#include <wx/clipbrd.h>
#include <wx/mimetype.h>
#include <wx/image.h>
if (PyLong_Check(result))
o = PyLong_AsLongLong(result);
else
-#else
- o = PyInt_AsLong(result);
#endif
+ o = PyInt_AsLong(result);
Py_DECREF(result);
};
wxPyEndBlockThreads();
//----------------------------------------------------------------------
long wxPyGetWinHandle(wxWindow* win) {
+
#ifdef __WXMSW__
return (long)win->GetHandle();
#endif
-
+
// Find and return the actual X-Window.
#ifdef __WXGTK__
if (win->m_wxwindow) {
#endif
}
#endif
+
+#ifdef __WXMAC__
+ return (long)MAC_WXHWND(win->MacGetRootWindow());
+#endif
+
return 0;
}