At 18:52 29-07-05 +0000, you wrote: >Well, our goal is to make some functions available to the programmer as an >API but also hide others that we don't want them to change. For instance, >the interrupt routines are vital in the core code. We don't want the user >to alter them in any way. Is there another method other than creating a >library that can be used to hide functions then?
How about distributing an object (.o) file? All symbols within will be linked and you don't need to supply the source. Nico Coesel
