I work with win32 API and my choice language is pure C and not C ++ .
Suppose I have a project A that is present in solution S in visual studio
I want to add another project B (which has some common utility functions) to S
Now I want to reference Project B in Project A ... so that I can use these utility functions from Project B source code level. I do not want it to be used against project B dll
Suppose project B contains some math related functions, and I want to call functions from project A, and project B contains data structures, and I want to use them in Project A
How to achieve this ... thanks in advance
source
share