vc40-drvnt.bat 499 B

123456789101112131415161718
  1. @echo off
  2. REM Setup environment variables for Visual C++ 4.2 32 bit edition
  3. REM: First setup for Win32 console development (with Platform SDK)
  4. call vc40-c32.bat sdk > NUL
  5. REM: Extra stuff to set up for Windows NT DDK development
  6. SET BASEDIR=%NT_DDKROOT%
  7. SET PATH=%NT_DDKROOT%\bin;%PATH%
  8. if .%CHECKED%==.1 goto checked_build
  9. echo Release build enabled.
  10. goto done
  11. :checked_build
  12. echo Checked debug build enabled.
  13. goto done
  14. :done
  15. echo Visual C++ 4.2 Windows NT driver compilation environment set up