How to get handle to the dynamic link library?

Hi,

I have a dynamic link library which can be loaded to ROOT using gSystem->Load (). Then I need to apply GetProcAddress(handle, "FunctionName"). How can I get handle to the dynamic link library?

Thank you very much!

Hi,

You should try TSystem::DynFindSymbol().

Regards,
Sergey

1 Like

Thank you! It’s amazing. I am surprised by root again.