#include "wx/msgdlg.h"
#include "wx/log.h"
#include "wx/module.h"
+#include "wx/memory.h"
#if USE_WX_RESOURCES
#include "wx/resource.h"
#endif
+#if USE_POSTSCRIPT
+#include "wx/postscrp.h"
+#endif
+
#include <string.h>
-#if defined(__WIN95__) && !defined(__GNUWIN32__)
extern char *wxBuffer;
extern wxList wxPendingDelete;
return 0;
};
- wxTheApp = (* wxApp::GetInitializerFunction()) ();
+ wxTheApp = (wxApp*) (* wxApp::GetInitializerFunction()) ();
};
if (!wxTheApp)
if (!wxTheApp->OnInit()) return 0;
- wxTheApp->m_initialized = (wxTopLevelWindows.Number() > 0);
-
int retValue = 0;
if (wxTheApp->Initialized()) retValue = wxTheApp->OnRun();