Reputation: 742
I am fetch contacts from outlook using MAPI API in MFC.
then i move to second choice
I used release exe in " Use MFC in Static library " but i used release exe that gets following error
After I set in my project property shown in Image below
then get again same error
Upvotes: 0
Views: 1165
Reputation: 15375
Never ignore such linker errors where it seams that 2 different CRT versions (static/DLL or may be Debug) are used.
Fix your object modules so that they only use one CRT version! Ignoring such an error is the wrong way, because different heaps may be used inside your program!
Upvotes: 1