|
Re: Issue with Windows dev setup .Net (2003)
There are three files
Existing.cpp -> #include "darwin_header.h"
function1()
{
function2(); //This is newly added
}
darwin_header.h
void function2(); //prototype.
darwin_header.cpp
#include<darwin_header.h>
void function2()
{
}
|