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.

19 lines
383 B

  1. @echo off
  2. if "%1"=="" goto usage
  3. if exist %1.dll set ext=dll
  4. if exist %1.exe set ext=exe
  5. :bb1work
  6. bbflow /odb %1.bbf %1.%ext%
  7. bbinstr /odb %1.ins.bbl /idf %1.bbi %1.bbf
  8. bblink /o %1.ins.%ext% %1.ins.bbl
  9. goto end
  10. :usage
  11. echo.
  12. echo Please give the prefix of the 'dll' or 'exe' file which you are working with.
  13. echo.
  14. :end