I am working with Visual Studio 2013 Pro.
My Solution has 3 projects
projectA
projectB
projectC
and the Hierarchy is like
projectB and projectC depend on projectA. There is a main function in projectA and no main in projectB and projectC. projectA is compiling as a library and contains a few functions as entry-points for projectB and C, and those are linking properly.
There is no main in projectB or projectC, projectA has an int main, and there are extern functions declared in projectA for the other two to define, and the linker accepts the defined extern functions.
I am getting this error:
error LNK1561: entry point must be defined
Any help would be appreciated