spudgun0 wrote: > is it possible to specify a particular loading path, when linking a dll > implicitly ? > Is there a way to embed the path in the reference .lib , so that the > calling program can find it at load time ?
The .lib is used by the linker. It isn't used at runtime. You would have to hardcode a relative or absolute path to the LoadLibrary()/dlopen() call. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
