#include <signal.h> // for SIGTRAP used by wxTrap()
#endif //Win/Unix
-#if defined(__WXMSW__)
+#if defined(__WXMSW__) && !defined(__PALMOS__)
#include "wx/msw/wrapwin.h" // includes windows.h for MessageBox()
#endif
this->argc = argc;
this->argv = argv;
+#ifndef __PALMOS__
if ( m_appName.empty() && argv )
{
// the application name is, by default, the name of its executable file
wxFileName::SplitPath(argv[0], NULL, &m_appName, NULL);
}
+#endif
return true;
}