user541686
user541686

Reputation: 210402

Where is msvcrtd.dll?

Where can I find msvcrtd.dll (the debug CRT), corresponding to \WinDDK\7600.16385.1\lib\Crt\i386\msvcrtd.lib in the Windows Driver Kit?

Upvotes: 5

Views: 8039

Answers (2)

user541686
user541686

Reputation: 210402

Seems like it's not distributed.

Upvotes: 1

Necrolis
Necrolis

Reputation: 26171

Having the same DDK on my system, I cannot find the file , however, you can do it with some tools or programatically:

if you are using a program thats loading that dll, you can use windbg to display the module info (which should include the path), else you can use one of the psapi functions.


After some poking around, it would seem from this article that there is no longer a public msvcrtd.dll to use with the WDK, it does however give some advice on using alternatives. MSDN also supports the fact that there is no longer a debug CRT, as there only methods for debugging involve the debug API and/or WinDBG. However I suspect that the dll might be available from a checked build of windows.

Upvotes: 2

Related Questions