+/**
+ Initialize the library (may be called as many times as needed, but each
+ call to wxInitialize() must be matched by wxUninitialize()).
+
+ With this function you may avoid wxDECLARE_APP() and wxIMPLEMENT_APP() macros
+ and use wxInitialize() and wxUninitialize() dynamically in the
+ program startup and termination.
+
+ @header{wx/init.h}
+*/
+bool wxInitialize(int argc = 0, wxChar **argv = NULL);
+
+/**
+ Clean up; the library can't be used any more after the last call to
+ wxUninitialize().
+
+ See wxInitialize() for more info.
+
+ @header{wx/init.h}
+*/
+void wxUninitialize();
+