added wxEntry(char **) declaration

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-07-07 11:48:22 +00:00
parent 9b9d4651ae
commit 0acfb5bd66

View File

@@ -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