Mix MSVCRT.DLL and MSVCPRT.DLL ?

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi

I know it's not a good idea to use both msvcrt.lib and msvcrtd.lib in your
project, and the same goes for msvcprt.lib and msvcprtd.lib.
But is it ok to use both msvcrt.lib and msvcprt.lib? Or both msvcrtd.lib and
msvcprtd.lib?

Bye
Chris
 
Chris said:
Hi

I know it's not a good idea to use both msvcrt.lib and msvcrtd.lib in
your project, and the same goes for msvcprt.lib and msvcprtd.lib.
But is it ok to use both msvcrt.lib and msvcprt.lib? Or both
msvcrtd.lib and msvcprtd.lib?

Yes, that's perfectly normal. In fact, msvcprt.dll itself uses msvcrt.dll,
so you'll normally have both.

-cd
 
Back
Top