X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..5a45dd6fd9870de6b68eff437fd5fe4ea5895c3c:/interface/wx/dynlib.h diff --git a/interface/wx/dynlib.h b/interface/wx/dynlib.h index 3392ef4f19..5810f64b6a 100644 --- a/interface/wx/dynlib.h +++ b/interface/wx/dynlib.h @@ -8,7 +8,6 @@ /** @class wxDynamicLibraryDetails - @wxheader{dynlib.h} This class is used for the objects returned by the wxDynamicLibrary::ListLoaded() method and contains the information about a @@ -35,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 @@ -80,7 +79,6 @@ enum wxPluginCategory /** @class wxDynamicLibrary - @wxheader{dynlib.h} wxDynamicLibrary is a class representing dynamically loadable library (Windows DLL, shared library under Unix etc.). Just create an object of @@ -158,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