|
Re: Issue with Windows dev setup .Net (2003)
File: Existing.cpp
#include <darwin_header.h>
void function1()
{
function2() ; //defined in darwin_header.h
}
File: darwin_header.h
declaration
void function2();
File : darwin_header.cpp
#include <darwin_header.h>
void function2()
{
//function definition.
}
Now when I try to debug Existing.cpp, debugger is not able to understand any break point on the function function1().But if I comment function2() then I am able to debug function1().
Thanks in advance for all help.
-R
|