X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a787c5dc89b1cb6a9ddb4ebef3ad2fb24b49c8c..b1944ebcd065d61011e2a9187064089c3aef16aa:/include/wx/dynlib.h diff --git a/include/wx/dynlib.h b/include/wx/dynlib.h index 313180829c..b13587e3e5 100644 --- a/include/wx/dynlib.h +++ b/include/wx/dynlib.h @@ -70,7 +70,7 @@ There are no instances of this class, it simply serves as a namespace for its static member functions. */ -class wxDllLoader +class WXDLLEXPORT wxDllLoader { public: /** This function loads a shared library into memory, with libname @@ -94,6 +94,9 @@ public: */ static void * GetSymbol(wxDllType dllHandle, const wxString &name); + // return the standard DLL extension (with leading dot) for this platform + static wxString GetDllExt(); + private: /// forbid construction of objects wxDllLoader(); @@ -103,7 +106,7 @@ private: // wxLibrary // ---------------------------------------------------------------------------- -class wxLibrary : public wxObject +class WXDLLEXPORT wxLibrary : public wxObject { public: wxHashTable classTable; @@ -130,7 +133,7 @@ protected: // wxLibraries // ---------------------------------------------------------------------------- -class wxLibraries +class WXDLLEXPORT wxLibraries { public: wxLibraries();