I have MS Vis. 10 in the lib folder is not the above file (msvcirtd.lib). Throw someone, but it does not compile (writes Fatal error, etc.).
2 answers
MSVCRTD.DLL is a debug version of the standard Windows file (MSVCRT.DLL), which is missing if Visual C ++ 6 is not installed. Therefore, just install Visual C ++ 6.0 and it will work.
- one@userx MSVCRTD.DLL! = msvcirtd.lib - ReinRaus
- one@ReinRaus Right, thanks. - stanislav
|
In the topic on MSDN give two tips:
- Instead of # include <iostream.h> write in the code # include <iostream>
- Search #pragma comment (lib, "msvcirtd.lib") in all project files and delete it.
|