[email protected] wrote: > i've experimented that just loading com_xxx_wrapper.dll > in a simple java app > with > Runtime.getRuntime().load("c:/blabla/com_xxx_wrapper.dll"); > gives the same > Can't find dependent libraries. Of course in blabla > i've all the dll > com_xxx_wrapper.dll depends on. > I don't know how to trace what is happening > inside load. > > P.S. > xxx.dll is used in others c++ projects and does not show > any problems.
You can list a .dll's dependencies using > dumpbin /dependents file.dll or using depends. Both are part of the visual studio distribution. If you are using visual studio 2005 and above the issue could be that you are not including manifests in your .dll's. If you use the qtjambi_include.pri file, for the project this should have been done automatically. - Gunnar _______________________________________________ Qt-jambi-interest mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest
