]>
git.saurik.com Git - wxWidgets.git/blob - interface/init.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of global functions
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 Free resources allocated by a successful call to wxEntryStart().
12 void wxEntryCleanup();
17 (notice that under Windows CE platform, and only there, the type of
18 @a pCmdLine is @c wchar_t *, otherwise it is @c char *, even in
21 bool wxEntryStart(int& argc
, wxChar
** argv
);
22 bool wxEntryStart(HINSTANCE hInstance
,
23 HINSTANCE hPrevInstance
= NULL
,
24 char* pCmdLine
= NULL
,
25 int nCmdShow
= SW_SHOWNORMAL
);