Note: some of your apps are fltk2 apps, and some are fltk1.
Be sure you know how to tell the difference.
This is an FLTK1 program:
> #include <FL/Fl.H>
> #include <FL/Fl_Box.H>
> #include <FL/Fl_Double_Window.H>
This is an FLTK2 program:
> #include <fltk/run.h>
> #include <fltk/Window.h>
> #include <fltk/SharedImage.h>
FLTK1 programs have: "#include <FL/.."
FLTK2 programs have: "#include <fltk/.."
You've posted about both, more recently you've been posting
about an fltk1 apps.
> The load function can not work because of this line in code
> " //fl_register_images();"
Again, check your link flags. fl_register_images() is needed if you're
using image library calls, so be sure you're including all the image
related libraries.
See my last post regarding comparing your app's link flags
with the flags for e.g. the fltk 'pixmap_browser' or 'help'
example apps.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk