The problem is - gtk has no list of "extern" - definitions in one(!) file in the header - directory... and the link-process of libgtk needs many compiler-commandline-switches (...or use of gtkconfig).
In libtk8.0 is this no problem. One (!) extern-list and simple link-process. Bud gtk has more from the good look and feel of free dynamic software.
-- http://ekim.home.pages.de Mike Neuhaus
********PRO Heimerziehung heißt PRO Zukunft**********
Die Heimerziehung bedarf nicht ihrer eigenen Abschaffung,sondern einer durch Innovation geprägten Reform
Mike Neuhaus wrote:
The problem is - gtk has no list of "extern" - definitions in one(!) file in the header - directory...
If there is more than one `.h' file, it is no problem to integrate them all into one GPC unit. Or, you can write more than one unit - it does not matter. The `.h' structure and the unit structure are independent. Only when it comes to linking, all necessary object files must be present.
and the link-process of libgtk needs many compiler-commandline-switches (...or use of gtkconfig). [...]
:-/ ? How do they look like? Right now, we are working on a mechanism that will allow you to put those options into the source of the unit, so the program using the unit will not have to care about them.
Peter