+bool wxEntryStart(int& argc, wxChar **argv)
+{
+ // do minimal, always necessary, initialization
+ // --------------------------------------------
+
+ // initialize wxRTTI
+ if ( !DoCommonPreInit() )
+ {
+ return false;
+ }
+
+
+ // first of all, we need an application object
+ // -------------------------------------------
+
+ // the user might have already created it himself somehow
+ wxAppPtr app(wxTheApp);
+ if ( !app.get() )
+ {
+ // if not, he might have used IMPLEMENT_APP() to give us a function to
+ // create it
+ wxAppInitializerFunction fnCreate = wxApp::GetInitializerFunction();
+
+ if ( fnCreate )
+ {
+ // he did, try to create the custom wxApp object
+ app.Set((*fnCreate)());
+ }
+ }
+
+ if ( !app.get() )
+ {
+ // either IMPLEMENT_APP() was not used at all or it failed -- in any
+ // case we still need something
+ //
+ // NB: cast is needed because for the backwards-compatibility reasons
+ // wxTheApp is really a wxApp and not just wxAppConsole...
+ app.Set((wxApp *)new wxDummyConsoleApp);
+ }
+
+
+ // wxApp initialization: this can be customized
+ // --------------------------------------------
+
+ if ( !wxTheApp->Initialize(argc, argv) )
+ {
+ return false;
+ }
+
+ wxCallAppCleanup callAppCleanup(wxTheApp);
+
+ // for compatibility call the old initialization function too
+ if ( !wxTheApp->OnInitGui() )
+ return false;
+
+
+ // common initialization after wxTheApp creation
+ // ---------------------------------------------
+
+ if ( !DoCommonPostInit() )
+ return false;
+
+
+ // prevent the smart pointer from destroying its contents
+ app.release();
+
+ // and the cleanup object from doing cleanup
+ callAppCleanup.Dismiss();
+
+ return true;
+}
+
+#if wxUSE_UNICODE
+
+// we provide a wxEntryStart() wrapper taking "char *" pointer too
+bool wxEntryStart(int& argc, char **argv)
+{
+ ConvertArgsToUnicode(argc, argv);
+
+ if ( !wxEntryStart(argc, gs_initData.argv) )
+ {
+ FreeConvertedArgs();
+
+ return false;
+ }
+
+ return true;
+}
+
+#endif // wxUSE_UNICODE
+