X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/43543d985b04d065178df50dbbc998786ff97282..5fd2b2c6ae663c7840f53e4cf087525602eaca7b:/include/wx/os2/app.h diff --git a/include/wx/os2/app.h b/include/wx/os2/app.h index d003b78ae9..4a5422a4df 100644 --- a/include/wx/os2/app.h +++ b/include/wx/os2/app.h @@ -30,6 +30,12 @@ void WXDLLEXPORT wxExit(void); // Yield to other apps/messages bool WXDLLEXPORT wxYield(void); +extern MRESULT EXPENTRY wxWndProc( HWND + ,ULONG + ,MPARAM + ,MPARAM + ); + // Represents the application. Derive OnInit and declare // a new App object to start application class WXDLLEXPORT wxApp : public wxAppBase @@ -89,9 +95,6 @@ public: virtual bool ProcessMessage(WXMSG* pMsg); void DeletePendingObjects(void); bool ProcessIdle(void); -#if wxUSE_THREADS - void ProcessPendingEvents(void); -#endif public: int m_nCmdShow; @@ -102,7 +105,6 @@ protected: DECLARE_EVENT_TABLE() private: HMQ m_hMq; - QMSG m_vMsg; }; int WXDLLEXPORT wxEntry( int argc, char *argv[] );