I have small problem with static linking DLL library. Exactly I have two library. In first it's some function "Func1". In second library I have function "funcX" this function has to use "Func1". So, I using static linking, this same way how linking library to *.exe program.
compilation is break by error: "Func1" was not declared in this scope.
Is it possible STATIC LINKING some library to other libraries? How do it?
Yes it's compile error. It looks like the compiler doesn't see Func1, although I include header file from first library to second. When I use first library in regular application in this same way, that everything is OK. When I will be on second PC I paste code. Maybe then you can see my mistake.