X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bb24c68f3502746147337c3f502cc1c957bcfb35..b6e2eddeaf7e559589ce41ac41e88f9bd71c5a08:/include/wx/init.h diff --git a/include/wx/init.h b/include/wx/init.h index 7fe4515597..72c93e471e 100644 --- a/include/wx/init.h +++ b/include/wx/init.h @@ -44,6 +44,13 @@ extern void WXDLLIMPEXP_BASE wxEntryCleanup(); // returns the program exit code extern int WXDLLIMPEXP_BASE wxEntry(int& argc, wxChar **argv); +// we overload wxEntry[Start]() to take "char **" pointers too +#if wxUSE_UNICODE + +extern bool wxEntryStart(int& argc, char **argv); +extern int wxEntry(int& argc, char **argv); + +#endif// wxUSE_UNICODE // ---------------------------------------------------------------------------- // Using the library without (explicit) application object: you may avoid using