IConverterSession
-
I have used IConverterSession Interface. I declared in my project. I also defined these two GUIDs CLSID_IConverterSession and IID_IConverterSession. when i compile, it shows following errors. error LNK2001: unresolved external symbol _CLSID_IConverterSession error LNK2001: unresolved external symbol _IID_IConverterSession fatal error LNK1120: 2 unresolved externals I dont know how to resolve this. Regards, Swapnil
-
I have used IConverterSession Interface. I declared in my project. I also defined these two GUIDs CLSID_IConverterSession and IID_IConverterSession. when i compile, it shows following errors. error LNK2001: unresolved external symbol _CLSID_IConverterSession error LNK2001: unresolved external symbol _IID_IConverterSession fatal error LNK1120: 2 unresolved externals I dont know how to resolve this. Regards, Swapnil
-
As far as i know,This is because you project short of some dll file or dib file,you may find the msdn to find it yourself,it will be easy,good luck.
The errors come because of I have used DEFINE_GUID Now the problem with DEFINE_GUID is that we have to include INITGUID.h otherwise compliler takes GUIDs as they are defined same where else so it comes with external unresolved error. Thanks any way