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();
{
DECLARE_DYNAMIC_CLASS(wxApp)
wxApp();
- inline ~wxApp() {}
+ ~wxApp();
static void SetInitializerFunction(wxAppInitializerFunction fn) { m_appInitFn = fn; }
static wxAppInitializerFunction GetInitializerFunction() { return m_appInitFn; }
public:
// Implementation
- static bool Initialize(WXHINSTANCE instance);
- static void CommonInit();
- static bool RegisterWindowClasses();
+ static bool Initialize();
static void CleanUp();
- static void CommonCleanUp();
+
+ static bool RegisterWindowClasses();
+ // Convert Windows to argc, argv style
+ void ConvertToStandardCommandArgs(char* p);
virtual bool DoMessage();
virtual bool ProcessMessage(WXMSG* pMsg);
void DeletePendingObjects();
protected:
bool m_keepGoing ;
-// bool m_resourceCollection;
-// bool m_pendingCleanup; // TRUE if we need to check the GDI object lists for cleanup
DECLARE_EVENT_TABLE()
};