no message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2000-03-15 16:39:36 +00:00
parent e893cd66dc
commit 76990f630b
2 changed files with 6 additions and 7 deletions

View File

@@ -89,9 +89,6 @@ public:
virtual bool ProcessMessage(WXMSG* pMsg); virtual bool ProcessMessage(WXMSG* pMsg);
void DeletePendingObjects(void); void DeletePendingObjects(void);
bool ProcessIdle(void); bool ProcessIdle(void);
#if wxUSE_THREADS
void ProcessPendingEvents(void);
#endif
public: public:
int m_nCmdShow; int m_nCmdShow;

View File

@@ -975,13 +975,15 @@ void wxWakeUpIdle()
} }
} // end of wxWakeUpIdle } // end of wxWakeUpIdle
HINSTANCE wxGetInstance() HAB wxGetInstance()
{ {
return wxhInstance; return vHabmain;
} }
void wxSetInstance(HINSTANCE hInst) void wxSetInstance(
HAB vHab
)
{ {
wxhInstance = hInst; vHabmain = vHab;
} }