1 | initial version |
Hi there, I just came across this issue and after serious web trawling, found the answer.
you need to go to your visual studio project settings, to c/c++, to code generation and change the runtime library to Multi-threaded Debug DLL (/MDd).
It seems this error is from a single threaded DLL trying to run in a multi thread project.
good luck.