]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/basemsw.cpp
fix PCH-less compilation
[wxWidgets.git] / src / msw / basemsw.cpp
index 033d3a76b2a5051d559f74acbcf214aea7b5a58a..e033e2be88acbbf90c0b5e219df14b3a642db005 100644 (file)
@@ -28,6 +28,7 @@
 #endif //WX_PRECOMP
 
 #include "wx/apptrait.h"
+#include "wx/msw/private/timer.h"
 // MBN: this is a workaround for MSVC 5: if it is not #included in
 // some wxBase file, wxRecursionGuard methods won't be exported from
 // wxBase.dll, and MSVC 5 will give linker errors
 
 #include "wx/msw/private.h"
 
+// ============================================================================
+// wxAppTraits implementation
+// ============================================================================
+
+WXDWORD wxAppTraits::DoSimpleWaitForThread(WXHANDLE hThread)
+{
+    return ::WaitForSingleObject((HANDLE)hThread, INFINITE);
+}
+
 // ============================================================================
 // wxConsoleAppTraits implementation
 // ============================================================================
@@ -71,3 +81,15 @@ bool wxConsoleAppTraits::DoMessageFromThreadWait()
     return true;
 }
 
+wxTimerImpl *
+wxConsoleAppTraits::CreateTimerImpl(wxTimer *timer)
+{
+    return new wxMSWTimerImpl(timer);
+}
+
+
+WXDWORD wxConsoleAppTraits::WaitForThread(WXHANDLE hThread)
+{
+    return DoSimpleWaitForThread(hThread);
+}
+