X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e273151278d28cceefe6eee8c49bc6915306805d..11f87a381bd9d0fe195ff1a3802ae141413d7c2e:/src/palmos/base.cpp diff --git a/src/palmos/base.cpp b/src/palmos/base.cpp index db93d42b96..e7dc5bb9e5 100644 --- a/src/palmos/base.cpp +++ b/src/palmos/base.cpp @@ -6,7 +6,7 @@ // Created: 10.13.2004 // RCS-ID: $Id$ // Copyright: (c) 2004 William Osborne -// License: wxWindows licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -28,17 +28,13 @@ #endif //WX_PRECOMP #include "wx/apptrait.h" - #include "wx/recguard.h" +#include "wx/evtloop.h" // wxEventLoop // ============================================================================ // wxConsoleAppTraits implementation // ============================================================================ -void wxConsoleAppTraits::AlwaysYield() -{ -} - void *wxConsoleAppTraits::BeforeChildWaitLoop() { return NULL; @@ -53,3 +49,17 @@ bool wxConsoleAppTraits::DoMessageFromThreadWait() return true; } +WXDWORD wxConsoleAppTraits::WaitForThread(WXHANDLE hThread) +{ + // TODO + return 0; +} + +#if wxUSE_CONSOLE_EVENTLOOP +wxEventLoopBase * +wxConsoleAppTraits::CreateEventLoop() +{ + return new wxEventLoop; +} +#endif // wxUSE_CONSOLE_EVENTLOOP +