WinCE fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-08-25 14:15:20 +00:00
parent 9ce43bfae9
commit ffcb4ee424
5 changed files with 13 additions and 3 deletions

View File

@@ -353,7 +353,11 @@ void *wxDynamicLibrary::GetSymbol(const wxString &name, bool *success) const
symbol = 0;
#elif defined(__WINDOWS__)
#ifdef __WXWINCE__
symbol = (void*) ::GetProcAddress( m_handle, name );
#else
symbol = (void*) ::GetProcAddress( m_handle, name.mb_str() );
#endif
#else
#error "runtime shared lib support not implemented"