> So all I need to do it's just copy these corresponding dll > files to the same directory? Do I have to change something in > my program or how would the program know that it should use > these dlls?
By default, win32 systems look in the exe's dir first, for any DLL's, then in various system defined places. So just putting them in the exe's own dir should work. But if it is a DLL problem, you would be better of static linking your code, so that the needed functions are built in rather than having to be loaded at runtime anyway. SELEX Sensors and Airborne Systems Limited Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14 3EL A company registered in England & Wales. Company no. 02426132 ******************************************************************** This email and any attachments are confidential to the intended recipient and may also be privileged. If you are not the intended recipient please delete it from your system and notify the sender. You should not copy it or use it for any purpose nor disclose or distribute its contents to any other person. ******************************************************************** _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

