1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxDynamicLibrary documentation
4 %% Author: Vadim Zeitlin
6 %% Created: 14.01.02 (extracted from dllload.tex)
8 %% Copyright: (c) Vadim Zeitlin
9 %% License: wxWidgets license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxDynamicLibrary
}}\label{wxdynamiclibrary
}
14 wxDynamicLibrary is a class representing dynamically loadable library
15 (Windows DLL, shared library under Unix etc.). Just create an object of
16 this class to load a library and don't worry about unloading it -- it will be
17 done in the objects destructor automatically.
23 %\helpref{wxDllLoader}{wxdllloader}
27 \membersection{wxDynamicLibrary::wxDynamicLibrary
}\label{wxdynamiclibrarywxdynamiclibrary
}
29 \func{}{wxDynamicLibrary
}{\void}
31 \func{}{wxDynamicLibrary
}{\param{const wxString\&
}{name
},
\param{int
}{flags = wxDL
\_DEFAULT}}
33 Constructor. Second form calls
\helpref{Load
}{wxdynamiclibraryload
}.
36 \membersection{wxDynamicLibrary::CanonicalizeName
}\label{wxdynamiclibrarycanonicalizename
}
38 \func{wxString
}{CanonicalizeName
}{\param{const wxString\&
}{name
},
\param{wxDynamicLibraryCategory
}{ cat = wxDL
\_LIBRARY}}
40 Returns the platform-specific full name for the library called
\arg{name
}. E.g.
41 it adds a
{\tt ".dll"
} extension under Windows and
{\tt "lib"
} prefix and
42 {\tt ".so"
},
{\tt ".sl"
} or maybe
{\tt ".dylib"
} extension under Unix.
44 The possible values for
\arg{cat
} are:
47 \twocolitem{wxDL
\_LIBRARY}{normal library
}
48 \twocolitem{wxDL
\_MODULE}{a loadable module or plugin
}
53 \helpref{CanonicalizePluginName
}{wxdynamiclibrarycanonicalizepluginname
}
57 \membersection{wxDynamicLibrary::CanonicalizePluginName
}\label{wxdynamiclibrarycanonicalizepluginname
}
59 \func{wxString
}{CanonicalizePluginName
}{\param{const wxString\&
}{name
},
\param{wxPluginCategory
}{ cat = wxDL
\_PLUGIN\_GUI}}
61 This function does the same thing as
62 \helpref{CanonicalizeName
}{wxdynamiclibrarycanonicalizename
} but for wxWidgets
63 plugins. The only difference is that compiler and version information are added
64 to the name to ensure that the plugin which is going to be loaded will be
65 compatible with the main program.
67 The possible values for
\arg{cat
} are:
70 \twocolitem{wxDL
\_PLUGIN\_GUI}{plugin which uses GUI classes (default)
}
71 \twocolitem{wxDL
\_PLUGIN\_BASE}{plugin which only uses wxBase
}
75 \membersection{wxDynamicLibrary::Detach
}\label{wxdynamiclibrarydetach
}
77 \func{wxDllType
}{Detach
}{\void}
79 Detaches this object from its library handle, i.e. the object will not unload
80 the library any longer in its destructor but it is now the callers
81 responsability to do this using
\helpref{Unload
}{wxdynamiclibraryunload
}.
84 \membersection{wxDynamicLibrary::GetSymbol
}\label{wxdynamiclibrarygetsymbol
}
86 \constfunc{void *
}{GetSymbol
}{\param{const wxString\&
}{name
}}
88 Returns pointer to symbol
{\it name
} in the library or NULL if the library
89 contains no such symbol.
93 \helpref{wxDYNLIB
\_FUNCTION}{wxdynlibfunction
}
96 \membersection{wxDynamicLibrary::HasSymbol
}\label{wxdynamiclibraryhassymbol
}
98 \constfunc{bool
}{HasSymbol
}{\param{const wxString\&
}{name
}}
100 Returns
\true if the symbol with the given
\arg{name
} is present in the dynamic
101 library,
\false otherwise. Unlike
\helpref{GetSymbol
}{wxdynamiclibrarygetsymbol
},
102 this function doesn't log an error message if the symbol is not found.
107 \membersection{wxDynamicLibrary::IsLoaded
}\label{wxdynamiclibraryisloaded
}
109 \constfunc{bool
}{IsLoaded
}{\void}
111 Returns
\true if the library was successfully loaded,
\false otherwise.
114 \membersection{wxDynamicLibrary::Load
}\label{wxdynamiclibraryload
}
116 \func{bool
}{Load
}{\param{const wxString\&
}{name
},
\param{int
}{flags = wxDL
\_DEFAULT}}
118 Loads DLL with the given
\arg{name
} into memory. The
\arg{flags
} argument can
119 be a combination of the following bits:
122 \twocolitem{wxDL
\_LAZY}{equivalent of RTLD
\_LAZY under Unix, ignored elsewhere
}
123 \twocolitem{wxDL
\_NOW}{equivalent of RTLD
\_NOW under Unix, ignored elsewhere
}
124 \twocolitem{wxDL
\_GLOBAL}{equivalent of RTLD
\_GLOBAL under Unix, ignored elsewhere
}
125 \twocolitem{wxDL
\_VERBATIM}{don't try to append the appropriate extension to
126 the library name (this is done by default).
}
129 Returns
\true if the library was successfully loaded,
\false otherwise.
132 \membersection{wxDynamicLibrary::Unload
}\label{wxdynamiclibraryunload
}
134 \func{void
}{Unload
}{\void}
136 \func{static void
}{Unload
}{\param{wxDllType
}{handle
}}
138 Unloads the library from memory. wxDynamicLibrary object automatically calls
139 this method from its destructor if it had been successfully loaded.
141 The second version is only used if you need to keep the library in memory
142 during a longer period of time than the scope of the wxDynamicLibrary object.
143 In this case you may call
\helpref{Detach
}{wxdynamiclibrarydetach
} and store
144 the handle somewhere and call this static method later to unload it.