There is no need to implement your own function for GetProcAddress
Qt also provide the dll loading functinality through QLibrary class
you can look into this class..
here is a sample code for the same.......
QLibrary library( "dll_Name" );
library.resolve("Function_Name"); // same as GetProcAddress
I hope it will resolve your problem
Bookmarks