PDA

View Full Version : Dynamic Linking



qtoptus
22nd April 2010, 00:02
Is there a cross platform API in Qt to handle loading and linking to dynamic link libraries (dlls, so...) instead of using platform dependent calls?

If not in Qt, is it else where?

Thanks.

csaken
22nd April 2010, 00:36
There is an api for loading shared libraries, and plugins.
Shared libraries can be loaded using QLibrary. More informations at http://doc.trolltech.com/4.6/qlibrary.html#details
A description of how to work with plugins can be found at http://doc.qt.nokia.com/4.6/plugins-howto.html

Regards,
Jancsi Farkas