]> git.saurik.com Git - wxWidgets.git/blob - interface/init.h
revised base64.h;bitmap.h
[wxWidgets.git] / interface / init.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: init.h
3 // Purpose: interface of global functions
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9 /**
10 Free resources allocated by a successful call to wxEntryStart().
11 */
12 void wxEntryCleanup();
13
14
15 //@{
16 /**
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
19 Unicode build).
20 */
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);
26 //@}
27