reference other projects in visual studio for win32 projects
Posted
by Vineel Kumar Reddy
on Stack Overflow
See other posts from Stack Overflow
or by Vineel Kumar Reddy
Published on 2010-05-17T08:11:44Z
Indexed on
2010/05/17
9:21 UTC
Read the original article
Hit count: 357
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
© Stack Overflow or respective owner