]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mfc/mfctest.cpp
document the wxWindow::Get/SetLayoutDirection functions
[wxWidgets.git] / samples / mfc / mfctest.cpp
index 18b91e36473535fddec7694a3bea2739feedb278..a4102648a94a6febd46df3f220b228f6d33fb0bc 100644 (file)
 //     first: mfc[version][u]d.lib
 //     -  [version] -> 42 or 70 or 80 etc
 //     -  u if using Unicode
+//
+// (4) Unicode builds may produce the linker error "unresolved external symbol _WinMain@16".
+//     MFC requires you to manually add the Unicode entry point to the linker settings,
+//     Entry point symbol -> wWinMainCRTStartup
 
 #include "stdafx.h"
 
@@ -224,7 +228,7 @@ int CTheApp::ExitInstance()
 BOOL CTheApp::PreTranslateMessage(MSG *msg)
 {
     wxEventLoop * const
-        evtLoop = wx_static_cast(wxEventLoop *, wxEventLoop::GetActive());
+        evtLoop = static_cast<wxEventLoop *>(wxEventLoop::GetActive());
     if ( evtLoop && evtLoop->PreProcessMessage(msg) )
         return TRUE;