Compilation fix for OS/2.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
7a3ba35d63
commit
fd6c94288f
@ -243,7 +243,11 @@ public:
|
|||||||
static void *RawGetSymbol(wxDllType handle, const wxString& name);
|
static void *RawGetSymbol(wxDllType handle, const wxString& name);
|
||||||
void *RawGetSymbol(const wxString& name) const
|
void *RawGetSymbol(const wxString& name) const
|
||||||
{
|
{
|
||||||
|
#if defined (__WXPM__) || defined(__EMX__)
|
||||||
|
return GetSymbol(name);
|
||||||
|
#else
|
||||||
return RawGetSymbol(m_handle, name);
|
return RawGetSymbol(m_handle, name);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// return all modules/shared libraries in the address space of this process
|
// return all modules/shared libraries in the address space of this process
|
||||||
|
Loading…
Reference in New Issue
Block a user