I have an old C ++ project compiled with VC6.
I need to statically link the new library to implement the new functionality.
Unfortunately, the new library defines the symbol (i.e. _inflate) that is already defined in the previously linked static library.
Of course, I can not get rid of the library, and, of course, I do not have access to the source code of the library.
Is there any way to avoid linker error (LNK2005)?
source
share