git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19457
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
Constructor. Second form calls \helpref{Load}{wxdynamiclibraryload}.
+\membersection{wxDynamicLibrary::Detach}\label{wxdynamiclibrarydetach}
+
+\func{wxDllType}{Detach}{\void}
+
+Detaches this object from its library handle, i.e. the object will not unload
+the library any longer in its destructor but it is now the callers
+responsability to do this.
+
\membersection{wxDynamicLibrary::IsLoaded}\label{wxdynamiclibraryisloaded}
\constfunc{bool}{IsLoaded}{\void}
bool Load(wxString libname, int flags = wxDL_DEFAULT);
+ // detach the library object from its handle, i.e. prevent the object
+ // from unloading the library in its dtor -- the caller is now
+ // responsible for doing this
+ wxDllType Detach() { wxDllType h = m_handle; m_handle = 0; return h; }
+
// unload the library, also done automatically in dtor
void Unload();