Search Results

-1
votes

wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?

You want to use the function: bool wxEntryStart(int& argc, wxChar **argv) instead of wxEntry. It doesn't call your app's OnInit() or run the main loop. …