regenerated headers to remove @seealso in favour of @see; fixed links to global functions/macros; converted \since latex macros into @wxsince commands; changed headers purpose from 'documentation for' to 'interface of'

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-10 15:24:38 +00:00
parent 3a65144e7c
commit e54c96f187
269 changed files with 2027 additions and 1553 deletions

View File

@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////////////////////
// Name: dynlib.h
// Purpose: documentation for wxDynamicLibraryDetails class
// Purpose: interface of wxDynamicLibraryDetails
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@@ -59,6 +59,7 @@ public:
};
/**
@class wxDllLoader
@wxheader{dynlib.h}
@@ -185,6 +186,7 @@ public:
};
/**
@class wxDynamicLibrary
@wxheader{dynlib.h}
@@ -197,8 +199,7 @@ public:
@library{wxbase}
@category{FIXME}
@seealso
wxDynamicLibrary::CanonicalizePluginName
@see wxDynamicLibrary::CanonicalizePluginName
*/
class wxDynamicLibrary
{
@@ -269,7 +270,7 @@ public:
Returns pointer to symbol @a name in the library or @NULL if the library
contains no such symbol.
@see wxDYNLIB_FUNCTION
@see wxDYNLIB_FUNCTION()
*/
void* GetSymbol(const wxString& name) const;
@@ -288,7 +289,8 @@ public:
Returns @true if the symbol with the given @a name is present in the dynamic
library, @false otherwise. Unlike GetSymbol(),
this function doesn't log an error message if the symbol is not found.
This function is new since wxWidgets version 2.5.4
@wxsince{2.5.4}
*/
bool HasSymbol(const wxString& name) const;
@@ -298,7 +300,7 @@ public:
bool IsLoaded() const;
/**
This static method returns an array containing the details
This static method returns an array() containing the details
of all modules loaded into the address space of the current project, the array
elements are object of @c wxDynamicLibraryDetails class. The array will
be empty if an error occurred.
@@ -356,6 +358,7 @@ public:
};
// ============================================================================
// Global functions/macros
// ============================================================================