// 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:
HMQ m_hMq;
- QMSG m_vMsg;
};
int WXDLLEXPORT wxEntry( int argc, char *argv[] );