reference other projects in visual studio for win32 projects
- by Vineel Kumar Reddy
Hi All
I am working with win32 API and my language of choice is pure C and no C++.
Assume 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) in to S
Now I want to reference Project B in Project A... So that I can use those utility functions from Project B source code level. I dont want it be used against dll of Project B
assume project B contains some math related functions and i want to call the functions from Project A or project B contains come data structures and i want to make use of them in Project A
How to achieve this.... thanks in advance