X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e273151278d28cceefe6eee8c49bc6915306805d..336775c0587b2b83d671efcda03b0f0ced74aaed:/src/palmos/base.cpp diff --git a/src/palmos/base.cpp b/src/palmos/base.cpp index db93d42b96..d25c40f061 100644 --- a/src/palmos/base.cpp +++ b/src/palmos/base.cpp @@ -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 +