class WXDLLEXPORT wxLog;
WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
+WXDLLEXPORT_DATA(extern HAB) vHabmain;
// Force an exit from main loop
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
virtual bool ProcessMessage(WXMSG* pMsg);
void DeletePendingObjects(void);
bool ProcessIdle(void);
-#if wxUSE_THREADS
- void ProcessPendingEvents(void);
-#endif
public:
int m_nCmdShow;
DECLARE_EVENT_TABLE()
private:
- HAB m_vHab;
HMQ m_hMq;
- QMSG m_vMsg;
};
int WXDLLEXPORT wxEntry( int argc, char *argv[] );