|
Re: Issue with Windows dev setup .Net (2003)
#include "darwin_header.h" got added in the code
function1() //this was there before
**
function2(); //newly added
}
in darwin_header.h
I have declared the function
function2();
in darwin_header.cpp
#include "darwin_header.h"
function2() //Definition
**
}
When I try to debug I never get the hit in function1().But if I comment I am getting.
Note if it is a simple function like printf() put inside function2() and I include <stdio.h> in top it works but if there are some placed in " " it doesn't work.
Thanks
-R
|