Hi, > Borland allow function to be replaceable so you can replace a single > function without replace entire module > not good way but can be easy: > > in my.lib other than other function > func stato > will be replaced > in myprg with simply > func stato > sequence link define result
There is nothing to thank for bcc to hide important link-time problems caused by wrong coding / linking practices, like using multiple definitions of the same symbol. Such problems are best to be fixed in app code ASAP. BTW, mingw also "supports" it, you only need to disable the fatal error using '-Wl,--allow-multiple-definition' option. Same goes for msvc. We've been talking a lot about this on the list in the past, so I'm surprised there is still misunderstanding here. Brgds, Viktor _______________________________________________ Harbour mailing list (attachment size limit: 40KB) [email protected] http://lists.harbour-project.org/mailman/listinfo/harbour
