Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
415 B

  1. for burnslib\core
  2. USE_MSVCRT=1
  3. links to dll version of CRTs. If STL headers are included, also causes
  4. link to msvcrp60.dll
  5. causes -D_DLL=1 -D_MT=1 to be passed to cl, otherwise the same.
  6. USE_LIBCMT=1
  7. causes -D_MT=1 but not -D_DLL=1 to be passed to cl
  8. _MT is necessary to get correct declaration of errno from stdlib.h
  9. for binaries, causes link to thread-aware msvcrt.dll (non-static crts)