View Single Post
Old 06-25-2009, 12:15 PM   #5 (permalink)
rajukgp
Registered User
 
Join Date: Sep 2008
Posts: 17
OS: Linux,Max,Windows


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()
{

}
rajukgp is offline   Reply With Quote