Add wxDynamicLibrary::GetModuleFromAddress().
Use dladdr() under Unix, if available, to provide the same functionality as we get from GetModuleHandleEx() under MSW and export it in a new public function. Closes #15248. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76114 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -347,6 +347,12 @@ public:
|
||||
// string on others:
|
||||
static wxString GetPluginsDirectory();
|
||||
|
||||
// Return the load address of the module containing the given address or
|
||||
// NULL if not found.
|
||||
//
|
||||
// If path output parameter is non-NULL, fill it with the full path to this
|
||||
// module disk file on success.
|
||||
static void* GetModuleFromAddress(const void* addr, wxString* path = NULL);
|
||||
|
||||
#ifdef __WINDOWS__
|
||||
// return the handle (HMODULE/HINSTANCE) of the DLL with the given name
|
||||
|
Reference in New Issue
Block a user