vc60-drvnt.bat 452 B

1234567891011121314151617
  1. @echo off
  2. REM Setup environment variables for Visual C++ 6.0 32 bit edition
  3. REM: First setup for Win32 console development (with Platform SDK)
  4. call vc60-c32.bat sdk > NUL
  5. REM: Now setup stuff for the NT DDK build environment
  6. call ntddk.bat
  7. if .%CHECKED%==.1 goto checked_build
  8. echo Release build enabled.
  9. goto done
  10. :checked_build
  11. echo Checked debug build enabled.
  12. goto done
  13. :done
  14. echo Visual C++ 6.0 Windows NT driver compilation environment set up