]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dynlib.h
Fix scrolling to the bottom in wxTextCtrl::AppendText().
[wxWidgets.git] / interface / wx / dynlib.h
index 9e128611a06358aafeff03e2e33a3d2f6249bc32..0af4f946e198404d3056042a96c55ccd22f9e494 100644 (file)
@@ -34,7 +34,7 @@ public:
         @return @true if the load address and module size were retrieved,
                  @false if this information is not available.
     */
-    bool GetAddress(void** addr, size_t len) const;
+    bool GetAddress(void* addr, size_t* len) const;
 
     /**
         Returns the base name of this module, e.g. @c "kernel32.dll" or
@@ -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.
 
@@ -156,7 +156,7 @@ public:
 
         @see wxDYNLIB_FUNCTION()
     */
-    void* GetSymbol(const wxString& name) const;
+    void* GetSymbol(const wxString& name, bool* success = 0) const;
 
     /**
         This function is available only under Windows as it is only useful when
@@ -166,6 +166,8 @@ public:
         function, you can use just the base name of the function and the
         correct suffix is appended automatically depending on the current
         build. Otherwise, this method is identical to GetSymbol().
+
+        @onlyfor{wxmsw}
     */
     void* GetSymbolAorW(const wxString& name) const;
 
@@ -227,7 +229,7 @@ public:
 // Global functions/macros
 // ============================================================================
 
-/** @ingroup group_funcmacro_misc */
+/** @addtogroup group_funcmacro_misc */
 //@{
 
 /**