-class WXDLLIMPEXP_BASE wxMSWEventLoopBase : public wxEventLoopManual
-{
-public:
- wxMSWEventLoopBase();
-
- // implement base class pure virtuals
- virtual bool Pending() const;
-
-protected:
- // get the next message from queue and return true or return false if we
- // got WM_QUIT or an error occurred
- bool GetNextMessage(WXMSG *msg);
-
- // same as above but with a timeout and return value can be -1 meaning that
- // time out expired in addition to
- int GetNextMessageTimeout(WXMSG *msg, unsigned long timeout);
-};
-
-#if wxUSE_GUI
-
-WX_DECLARE_OBJARRAY(MSG, wxMSGArray);