error LNK2019: unresolved external symbol "public: __thiscall
I have a project which has -
- ProjectA.h
- ProjectA.cpp
- Other files
ProjectA.h
has a namespace
that defines a function signature as
namespace someNamespace {
class someClass {
someClass();
someFunction();
};
}
I have a testProject which calls into someFunction()
to see the result for the given test cases. I'm using VC6 to compile the ProjectA
stuff and the test program is compiled in Visual Studio 2013.
- I have included all header files as VC++ includes
- I included the debug lib folder as linker addition.
Edit: As mentioned in the comments, i guess it might not be possible to use library compiled in VC6 to VC2013.