4
votes
wxwidgets setup.h “no such file”
wxWidgets is not built into useable libraries when you "install" the wxMSW installer. This is because there are so many configurable elements, which is precisely what the setup.h you refer to is fo …
-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.
…
