X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4ccf05663316e28d964c7d76dc5defe774b59427..d3fa4bc22e84e3ca4d88cc1772f2d414140a1017:/interface/wx/dynlib.h diff --git a/interface/wx/dynlib.h b/interface/wx/dynlib.h index 1651721c91..3c3baeaada 100644 --- a/interface/wx/dynlib.h +++ b/interface/wx/dynlib.h @@ -3,7 +3,7 @@ // Purpose: interface of wxDynamicLibrary and wxDynamicLibraryDetails // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -37,19 +37,19 @@ public: bool GetAddress(void* addr, size_t* len) const; /** - Returns the base name of this module, e.g. @c "kernel32.dll" or + Returns the base name of this module, e.g.\ @c "kernel32.dll" or @c "libc-2.3.2.so". */ wxString GetName() const; /** - Returns the full path of this module if available, e.g. - @c "c:\windows\system32\kernel32.dll" or @c "/lib/libc-2.3.2.so". + Returns the full path of this module if available, e.g.\ @c "c:\windows\system32\kernel32.dll" + or @c "/lib/libc-2.3.2.so". */ wxString GetPath() const; /** - Returns the version of this module, e.g. @c "5.2.3790.0" or @c "2.3.2". + Returns the version of this module, e.g.\ @c "5.2.3790.0" or @c "2.3.2". The returned string is empty if the version information is not available. */ @@ -81,7 +81,7 @@ enum wxPluginCategory @class wxDynamicLibrary wxDynamicLibrary is a class representing dynamically loadable library - (Windows DLL, shared library under Unix etc.). Just create an object of + (Windows DLL, shared library under Unix etc). Just create an object of this class to load a library and don't worry about unloading it -- it will be done in the objects destructor automatically. @@ -138,7 +138,7 @@ public: wxPluginCategory cat = wxDL_PLUGIN_GUI); /** - Detaches this object from its library handle, i.e. the object will not + 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 responsibility to do this using Unload(). */ @@ -229,7 +229,7 @@ public: // Global functions/macros // ============================================================================ -/** @ingroup group_funcmacro_misc */ +/** @addtogroup group_funcmacro_misc */ //@{ /**