#include <stdarg.h>
#include <stdio.h>
+#ifdef __WXMSW__
+ #include "wx/msw/private.h"
+#endif
+
// ===========================================================================
// implementation
// ===========================================================================
-#ifdef __WXBASE__
+#if wxUSE_BASE
// ----------------------------------------------------------------------------
// wxMessageOutput
#endif
}
#else // !MSW, !Mac
- wxFputs(out, stderr);
+ // FIXME: why is wxFputs() not defined under Linux?
+ fputs(out.mb_str(), stderr);
fflush(stderr);
#endif // platform
}
::wxLogMessage(wxT("%s"), out.c_str());
}
-#endif // __WXBASE__
+#endif // wxUSE_BASE
// ----------------------------------------------------------------------------
// wxMessageOutputMessageBox