I'm having a VC++ solution (VS 2013) which I'm compiling using only Microsoft provided "mincore.lib" & hence I untick the "Inherit from Parent or Project defaults" in the linker options , in C/C++-> preprocessor & also iu additional include directories.
I'm getting the following compilation error
COde snippet :
error LNK2019: unresolved external symbol __imp__CoInitialize@4 referenced in function _main
int main()
{
CoInitialize(NULL);
.............
.............
}
This means I need to provide the definition for "CoInitialize()". But which library has this "CoInitialize() " definition ?