Subj : Re: new help linking extern routine To : borland.public.cpp.borlandcpp From : Jeff Kish Date : Wed Jan 07 2004 02:18 pm On Sat, 3 Jan 2004 09:50:24 -0500, "Jack Saltiel" wrote: >I just broke my large program into a main and a bunch of routines. Now I >cannot seem to like to them. >I have the routines compiling OK and I put the .obj files in >c:\borland\bcc55\lib >I have declared the functions 'extern', but the linker keeps giving me the >error >"Unresolved external processmine( ... )" >How do I make the Linker find this object and link it in? Do I need to build >a .lib? How do I do that? > just include the cpp files in the project, or make a new project that is a library and add them there, then include that library in your project. If they are in a dll then make an import library and link to that. hth, Jeff Kish .