]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/base.cpp
Define KEY_WOW64_64KEY if it is missing from SDK headers.
[wxWidgets.git] / src / palmos / base.cpp
index db93d42b96d7d7e5012c7d8921687452833f72a1..e7dc5bb9e5c828f0449fa45ca5b9f403e94bfed3 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     10.13.2004
 // RCS-ID:      $Id$
 // Copyright:   (c) 2004 William Osborne
-// License:     wxWindows licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
 #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
+