]> git.saurik.com Git - wxWidgets.git/blame - interface/init.h
don't style using Doxygen tags; use <span> tags and CSS instead
[wxWidgets.git] / interface / init.h
CommitLineData
23324ae1 1/////////////////////////////////////////////////////////////////////////////
7c913512
FM
2// Name: init.h
3// Purpose: documentation for global functions
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10Free resources allocated by a successful call to wxEntryStart.
23324ae1
FM
11*/
12void wxEntryCleanup();
13
14
7c913512 15//@{
23324ae1 16/**
7c913512 17 (notice that under Windows CE platform, and only there, the type of
23324ae1
FM
18 @e pCmdLine is @c wchar_t *, otherwise it is @c char *, even in
19 Unicode build).
20*/
21bool wxEntryStart(int& argc, wxChar ** argv);
7c913512
FM
22bool wxEntryStart(HINSTANCE hInstance,
23 HINSTANCE hPrevInstance = @NULL,
24 char * pCmdLine = @NULL,
25 int nCmdShow = SW_SHOWNORMAL);
23324ae1
FM
26//@}
27