A
Antti Keskinen
Hi !
Try switching the compiler option to /MD instead of /MT. You're apparently
using /MT because the linker is using the multithreaded version of the
Runtime Library (LIBCMT.DLL). Using /MD allows the linker to selectively
pick which function to link with where. For example, with MFC builds, which
allow you to write single- and multi-threaded applications without much care
of what library you use, only the /MD option is allows.
I don't know if this will fix the problem, though. What are the two
additional libraries in the project you mention ?
-Antti Keskinen
Try switching the compiler option to /MD instead of /MT. You're apparently
using /MT because the linker is using the multithreaded version of the
Runtime Library (LIBCMT.DLL). Using /MD allows the linker to selectively
pick which function to link with where. For example, with MFC builds, which
allow you to write single- and multi-threaded applications without much care
of what library you use, only the /MD option is allows.
I don't know if this will fix the problem, though. What are the two
additional libraries in the project you mention ?
-Antti Keskinen