static wxDllType GetProgramHandle();
// return the platform standard DLL extension (with leading dot)
- static const wxChar *GetDllExt() { return ms_dllext; }
+ static const wxString& GetDllExt() { return ms_dllext; }
wxDynamicLibrary() : m_handle(0) { }
wxDynamicLibrary(const wxString& libname, int flags = wxDL_DEFAULT)
// platform specific shared lib suffix.
- static const wxChar *ms_dllext;
+ static const wxString ms_dllext;
// the handle to DLL or NULL
wxDllType m_handle;