vcruntime140d.dll과 vcruntime140.dll는 다르다. vcruntime140d.dll는 debug 모드에서 호출되는 DLL이다. vcruntime140.dll 가 호출되도록 하려면, Release 모드로 컴파일해야 한다.
vcruntime140d.dll is missing
위 그림에 있는 gpc64.dll에서 vcruntime140d.dll을 호출하고 있다. 이는 gpc64.dll이 debug 모드로 컴파일되었다는 것을 의미한다. gpc64.dll이 vcruntime140.dll 를 호출하도록 하려면 Release 모드로 다시 컴파일해야 한다.
The extern "C" construct is a C++ specific thing, it can’t be used in C. And the compiler treats your source file as a C source file since it has the extension .c.
You must be logged in to post a comment.