Simplified app initialisation in wxMSW and wxStubs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-09-17 09:58:52 +00:00
parent 7f555861b7
commit 589f0e3e60
7 changed files with 227 additions and 274 deletions

View File

@@ -32,10 +32,6 @@ class WXDLLEXPORT wxLog;
WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
void WXDLLEXPORT wxCleanUp();
void WXDLLEXPORT wxCommonCleanUp(); // Call this from the platform's wxCleanUp()
void WXDLLEXPORT wxCommonInit(); // Call this from the platform's initialization
// Force an exit from main loop
void WXDLLEXPORT wxExit();
@@ -132,8 +128,9 @@ protected:
public:
// Implementation
static void CommonInit();
static void CommonCleanUp();
static bool Initialize();
static void CleanUp();
void DeletePendingObjects();
bool ProcessIdle();