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.

22 lines
542 B

  1. @echo off
  2. rem Runs IcePick on gdiplus.dll. Saves the old gdiplus.dll
  3. rem as gdiplus.beforecap.dll.
  4. echo Running IcePick on gdiplus.dll
  5. pushd %~dp0..\Engine\Flat\dll\obj\i386
  6. if not exist gdiplus.dll echo gdiplus.dll not found & goto exit
  7. "%ICECAP%\icepick" -NOCROSSJUMPS gdiplus.dll
  8. if errorlevel 1 goto Error
  9. if exist gdiplus.beforecap.dll del gdiplus.beforecap.dll
  10. ren gdiplus.dll gdiplus.beforecap.dll
  11. ren gdiplus.cap.dll gdiplus.dll
  12. goto :exit
  13. :Error
  14. echo:
  15. echo Aborted - IcePick reported an error.
  16. :exit
  17. popd