On Mar 17, 2007, at 1:56 AM, saeed jellouli wrote: > Hi, > I finally was able to build fltk2 using MSYS under windows, but I > am still having a little problem: I am trying to use an Dev-Cpp > IDE, I created a project, set the directories paths properly, wrote > a small program, added manually the following libraries to the linker: > fltk2 msimg32 ole32 uuid comctl32 wsock32 supc++ > but I still have the following linking errors: > [Linker error] undefined reference to `IID_IUnknown' > [Linker error] undefined reference to `IID_IDropTarget' > does someone please know what's going on? > Thanks a lot for your help.
IDropTarget requires that you link with ole32.lib, which you seem to do. Make sure though that you link your libraries in the same order as the FLTK sample programs in the test folder. ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

